Skip to content

Commit

Permalink
Use "npm ci" instead of "npm i"
Browse files Browse the repository at this point in the history
  • Loading branch information
dfilatov committed Sep 13, 2018
1 parent bf98037 commit a7b2005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release.js
Expand Up @@ -8,7 +8,7 @@ var vow = require('vow'),
version = process.argv.slice(2)[0] || 'patch';

exec('git pull')
.then(() => exec('npm i'))
.then(() => exec('npm ci'))
.then(() => exec('npm run build'))
.then(() => exec(`npm version ${version}`))
.then(() => vow.all([
Expand Down

0 comments on commit a7b2005

Please sign in to comment.