0.3.0 • Published 4 years ago

plop-pack-npm-install v0.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Plop Pack Npm Install

npm

Useful to have action for PlopJS. This action runs npm install on the respective path passed to it.

Installation

npm i plop-pack-npm-install

Example

module.exports = function(plop) {
  // Loads the npmInstall action type
  plop.load('plop-pack-npm-install');

  plop.setGenerator('generate', {
    prompts: [
        // ...
    ],
    actions: function(data) {
      const actions = [];

      actions.push({
        type: 'npmInstall',
        path: `${process.cwd()}/project-name/`,
        // By default is false, but if "true" will log the output of commands
        verbose: true
      })
    }
  })
}