shell:shrinkwrap needs path separator conversion also.
This commit is contained in:
parent
7674a2074d
commit
6e95bb19d8
@ -198,10 +198,10 @@ module.exports = (grunt) ->
|
||||
update:
|
||||
command: """
|
||||
npm install --save-dev <%= Object.keys(pkg.devDependencies).filter(function(name) {return /^\\^/.test(pkg.devDependencies[name]);}).map(function(name) {return name+'@latest';}).join(' ') %>
|
||||
./node_modules/.bin/npm-shrinkwrap --dev
|
||||
node_modules/.bin/npm-shrinkwrap --dev
|
||||
""".split('\n').join('&&').replace(/\//g, path.sep)
|
||||
shrinkwrap:
|
||||
command: './node_modules/.bin/npm-shrinkwrap --dev'
|
||||
command: 'node_modules/.bin/npm-shrinkwrap --dev'.replace(/\//g, path.sep)
|
||||
|
||||
watch:
|
||||
options:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user