Skip to content

Commit d86b2f2

Browse files
author
andres
committed
minor changes in package.json and pr template
1 parent dd81216 commit d86b2f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PULL_REQUEST_TEMPLATE.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ Please, before doing the PR make sure that you are following the intructions des
1010
**Checklist**
1111
- [ ] Your PR is done against the `dev` branch
1212
- [ ] Your origin branch is updated with the latest changes from `dev`
13-
- [ ] All the tests and jshint are passing (`npm run test`)
14-
- [ ] Changelog is updated with a brief description of your changes (if required)
13+
- [ ] All the tests and linters are passing (`npm run test`)
1514
- [ ] Your changes have tests
1615

1716
Thanks for contributing to Gaucho

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"icon": "resources/icon.png"
2929
},
3030
"scripts": {
31-
"test": "npm run clean && istanbul cover _mocha && npm run jshint",
31+
"test": "istanbul cover _mocha && npm run jshint",
3232
"start": "electron .",
3333
"start-dev": "cross-env NODE_ENV=dev npm start",
3434
"build-electron": "electron-packager . --overwrite --out builds --ignore $npm_package_config_ignore --icon=$npm_package_config_icon",
@@ -37,7 +37,8 @@
3737
"jshint": "jshint *.js app test"
3838
},
3939
"pre-commit": [
40-
"test"
40+
"test",
41+
"clean"
4142
],
4243
"repository": {
4344
"type": "git",

0 commit comments

Comments
 (0)