Sha256: da7e156304a99c9120a81267a442004fc2382508f292ab2bf83ace5ec4d74c9c

Contents?: true

Size: 329 Bytes

Versions: 2

Compression:

Stored size: 329 Bytes

Contents

# frozen_string_literal: true

require 'rake_factory'

module RakeNPM
  module Tasks
    class Install < RakeFactory::Task
      default_name :install
      default_description(RakeFactory::DynamicValue.new do |_t|
        'Install NPM dependencies'
      end)

      action do |task|
        # no-op
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rake_npm-0.1.0.pre.2 lib/rake_npm/tasks/install.rb
rake_npm-0.1.0.pre.1 lib/rake_npm/tasks/install.rb