A set of tasks for Shipit used for npm specific tasks on deploy.
Inspired by the capistrano/composer extension.
Features:
- Triggered on the
updated
orfetched
event from shipit-deploy - Has a direct pass though task to npm cli
- Works via shipit-cli and grunt-shipit
npm install shipit-npm
Just simply run: (This triggers the npm
task on the deploy updated
or fetched
event. No additional config necessary.)
shipit staging deploy
Or you can run the tasks separatly :
shipit staging npm:init npm:install
shipit staging npm:run --cmd "update"
Type: Boolean
Default: true
A Boolean to determine whether to run the task in local workspace or on the remote.
Type: Array
or String
Default: []
An array or string specifying npm args passed to the npm install cmd.
Type: Array
or String
Default: []
An array or string specifying npm flags passed to the npm install cmd.
Type: Boolean
Default: false
A Boolean to determine whether to emit a pre install event (npm_preinstall
). Note: if you use this feature you will have to emit npm_pre_install_complete
once your preinstall task is completed eg:
shipit.on('npm_preinstall', function() {
console.log('MY PRE INSTALL TASK')
# do somthing cool
shipit.emit('npm_pre_install_complete')
})
module.exports = function (shipit) {
require('shipit-deploy')(shipit);
require('shipit-npm')(shipit);
shipit.initConfig({
default: {
npm: {
remote: false,
installArgs: ['gulp']
installFlags: ['-g'];
}
}
});
};
- npm
- npm:init
- Emit event "npm_inited".
- npm:install
- Runs npm install (with any Args
npm.installArgs
or Flagsnpm.installFlags
defined in options) - Emit event "npm_installed"
- Runs npm install (with any Args
- npm:run
- Runs npm command.
- npm:init
- on Event "deploy" (shipit-deploy initialized)
- Runs npm:init
- on Event "npm_inited"
- Runs npm:preinstall or npm:install (Triggered on the
updated
orfetched
event from shipit-deploy)
- Runs npm:preinstall or npm:install (Triggered on the
- on Event "npm_pre_install_complete"
- npm:install
MIT