Merge branch 'master' into dev

This commit is contained in:
Joan 2018-11-22 10:59:52 +01:00
commit 98429a95f7
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -25,7 +25,8 @@ node {
} }
stage ('Install Node dependencies') { stage ('Install Node dependencies') {
nodejs('node-lts') { nodejs('node-lts') {
sh "npm install" sh "npm install --only=prod"
sh "npm install --only=dev"
sh "gulp install" sh "gulp install"
} }
} }