Skip to content

Commit

Permalink
chore: improve NPM scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Portugal, Marcelo authored and mportuga committed May 20, 2019
1 parent 78e44f9 commit 8750aff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion grunt/clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ module.exports =
// Clean the temp directory
['.tmp', '<%= dist %>', 'docs', 'coverage',
'packages/*/.npmignore', 'packages/*/LICENSE.md',
'packages/*/css', 'packages/js', 'packages/*/*.js']
'packages/*/css', 'packages/*/js', 'packages/*/*.js']
;
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap",
"bump": "lerna version",
"bump": "lerna version --conventional-commits --no-push -m 'chore: Release %s'",
"changed": "lerna changed",
"clean": "lerna clean",
"release": "lerna publish",
"postinstall": "grunt shell:protractor-install",
"clean": "lerna clean && grunt clean",
"release": "lerna publish from-package",
"postinstall": "webdriver-manager update",
"init": "validate-commit-msg",
"test": "grunt",
"test": "grunt test",
"commit": "git-cz",
"start": "grunt dev --fast"
},
Expand Down

0 comments on commit 8750aff

Please sign in to comment.