Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mina-deploy/mina-npm
https://github.com/mina-deploy/mina-npm
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mina-deploy/mina-npm
- Owner: mina-deploy
- License: mit
- Created: 2016-06-29T17:46:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-07T05:12:38.000Z (about 4 years ago)
- Last Synced: 2024-09-19T18:37:49.587Z (4 months ago)
- Language: Ruby
- Size: 5.86 KB
- Stars: 4
- Watchers: 5
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mina::Npm
Npm plugin for [mina](https://github.com/mina-deploy/mina)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'mina-npm'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install mina-npm
## Usage
require 'mina/npm'
task :deploy => :environment do
deploy do
...
invoke 'npm:install'
invoke 'bower:install'
invoke 'grunt:task'
...
end
end## Configuration
set :npm_bin # default: 'npm'
set :bower_bin # default: 'bower'
set :grunt_bin # default: 'grunt'
set :npm_options # default: '--production'
set :bower_options # default: '--allow-root'
set :grunt_options # default: ''
set :grunt_task # default: 'build'## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/mina-npm. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).