install dev dependencies

This commit is contained in:
Joan 2018-11-22 09:18:37 +01:00
parent b2732216d0
commit 19605bb403
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

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