Skip to content

Commit

Permalink
fix: Fix remove scripts from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-algms committed May 27, 2018
1 parent c514a0a commit 38e4875
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ notifications:
email: false

node_js:
- '8'
- '10'

install:
- npm install
- npm ci

script:
- npm run build
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"clean-css": "cleancss --level 2 --source-map --format beautify -o dist/main.css dist/main.css",
"clean-css-min": "cleancss --debug --source-map -o dist/main.min.css dist/main.css",
"preversion": "npm run build",
"version": "node tools/remove-scripts-to-publish.js && conventional-changelog -i CHANGELOG.md -s && git add .",
"postversion": "npm publish --access public",
"postpublish": "git push && git push --tags",
"version": "conventional-changelog -i CHANGELOG.md -s && git add .",
"postversion": "node tools/remove-scripts-to-publish.js && npm publish --access public && git push && git push --tags",
"commit": "git-cz",
"presemantic-release": "node tools/remove-scripts-to-publish.js",
"semantic-release": "semantic-release",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
Expand Down

0 comments on commit 38e4875

Please sign in to comment.