Sha256: 5e30d0662b9c0817040434140248871d975dcdf594e9f6c7b9d519f946508a0c

Contents?: true

Size: 1.61 KB

Versions: 135

Compression:

Stored size: 1.61 KB

Contents

require 'json'
require 'uri'

module DPL
  class Provider
    class NPM < Provider
      NPMRC_FILE = '~/.npmrc'
      DEFAULT_NPM_REGISTRY = 'registry.npmjs.org'

      def needs_key?
        false
      end

      def check_app
      end

      def setup_auth
        file = File.open(File.expand_path(NPMRC_FILE), 'w')
        file.puts(npmrc_file_content)
        file.flush
      end

      def check_auth
        setup_auth
        log "Authenticated with email #{option(:email)}"
      end

      def push_app
        log "NPM API key format changed recently. If your deployment fails, check your API key in ~/.npmrc."
        log "http://docs.travis-ci.com/user/deployment/npm/"
        log "#{NPMRC_FILE} size: #{File.size(File.expand_path(NPMRC_FILE))}"

        command = "env NPM_API_KEY=#{option(:api_key)} npm publish"
        command << " --tag #{option(:tag)}" if options[:tag]
        context.shell "#{command}"
        FileUtils.rm(File.expand_path(NPMRC_FILE))
      end

      def package_registry
        if File.exists?('package.json')
          data = JSON.parse(File.read('package.json'))
          if data['publishConfig'] && data['publishConfig']['registry']
            return URI(data['publishConfig']['registry']).host
          end
        end

        DEFAULT_NPM_REGISTRY
      end

      def npmrc_file_content
        log "NPM version: #{npm_version}"
        if npm_version =~ /^1/
          "_auth = ${NPM_API_KEY}\nemail = #{option(:email)}"
        else
          "//#{package_registry}/:_authToken=${NPM_API_KEY}"
        end
      end

      def npm_version
        `npm --version`
      end
    end
  end
end

Version data entries

135 entries across 135 versions & 3 rubygems

Version Path
dpl-npm-1.9.1.travis.2710.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2705.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.0 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2689.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2669.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2666.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2660.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2639.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2637.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2635.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2633.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2627.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2623.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2621.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2619.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2617.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2615.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2611.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2608.5 lib/dpl/provider/npm.rb
dpl-npm-1.9.1.travis.2603.5 lib/dpl/provider/npm.rb