Skip updating shrinkwrap in helper scripts

[ci skip]
This commit is contained in:
Oliver Günther
2018-12-12 15:29:19 +01:00
parent 129f9b1294
commit 30f7de8108
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ try 'bundle install >> log/setup_dev.log'
echo "done."
echo "Installing node_modules ... "
try 'npm install >> log/setup_dev.log'
try 'npm install --no-shrinkwrap >> log/setup_dev.log'
echo "Linking plugin modules"
try 'bundle exec rake openproject:plugins:register_frontend >> log/setup_dev.log'
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openproject",
"version": "0.1.0",
"scripts": {
"postinstall": "cd frontend && npm install",
"postinstall": "cd frontend && npm install --no-shrinkwrap",
"test": "cd frontend && npm test && cd ..",
"tslint_typechecks": "cd frontend && npm run tslint_typechecks && cd ..",
"serve": "cd frontend && npm run serve",