Skip to content

Commit

Permalink
fix: drop the lock file checkout step during packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Harrison committed Dec 12, 2019
1 parent 9b2f104 commit bdb9c82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ twilio.env
.env
.history
package-lock.json
npm-shrinkwrap.json

### Backup package.json files created during release ###
*.bak
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@
"url": "https://github.com/twilio/twilio-cli.git"
},
"scripts": {
"postpack": "rimraf oclif.manifest.json npm-shrinkwrap.json",
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"prepack": "oclif-dev manifest && oclif-dev readme && npm shrinkwrap && git checkout -- package-lock.json",
"prepack": "oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
"test": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md",
"postinstall": "node welcome.js"
Expand Down

0 comments on commit bdb9c82

Please sign in to comment.