add support for --ignore-scripts when using npm
This commit is contained in:
parent
4e3095877f
commit
4c954ec417
1 changed files with 9 additions and 0 deletions
|
@ -50,6 +50,12 @@ options:
|
||||||
- The executable location for npm.
|
- The executable location for npm.
|
||||||
- This is useful if you are using a version manager, such as nvm
|
- This is useful if you are using a version manager, such as nvm
|
||||||
required: false
|
required: false
|
||||||
|
ignoreScripts:
|
||||||
|
description:
|
||||||
|
- Use the --ignore-scripts flag when installing.
|
||||||
|
required: false
|
||||||
|
choices: [ "yes", "no" ]
|
||||||
|
default: no
|
||||||
production:
|
production:
|
||||||
description:
|
description:
|
||||||
- Install dependencies in production mode, excluding devDependencies
|
- Install dependencies in production mode, excluding devDependencies
|
||||||
|
@ -111,6 +117,7 @@ class Npm(object):
|
||||||
self.path = kwargs['path']
|
self.path = kwargs['path']
|
||||||
self.registry = kwargs['registry']
|
self.registry = kwargs['registry']
|
||||||
self.production = kwargs['production']
|
self.production = kwargs['production']
|
||||||
|
self.ignoreScripts = kwargs['ignoreScripts']
|
||||||
|
|
||||||
if kwargs['executable']:
|
if kwargs['executable']:
|
||||||
self.executable = kwargs['executable'].split(' ')
|
self.executable = kwargs['executable'].split(' ')
|
||||||
|
@ -130,6 +137,8 @@ class Npm(object):
|
||||||
cmd.append('--global')
|
cmd.append('--global')
|
||||||
if self.production:
|
if self.production:
|
||||||
cmd.append('--production')
|
cmd.append('--production')
|
||||||
|
if self.ignoreScripts:
|
||||||
|
cmd.append('--ignore-scripts')
|
||||||
if self.name:
|
if self.name:
|
||||||
cmd.append(self.name_version)
|
cmd.append(self.name_version)
|
||||||
if self.registry:
|
if self.registry:
|
||||||
|
|
Loading…
Reference in a new issue