-
Notifications
You must be signed in to change notification settings - Fork 213
Flex all the things #21
base: master
Are you sure you want to change the base?
Changes from 3 commits
311296a
bf07666
e45a76c
063d353
5f078fc
5950f4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,9 @@ | |
"cover:check": "istanbul check-coverage && echo code coverage thresholds met, achievement unlocked!", | ||
"test:quick": "babel-node node_modules/.bin/_mocha -R tap test/init.js test/*-test.js" | ||
}, | ||
"pre-commit": [ | ||
"test" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i'd really prefer not to run tests before every commit - that will slow down rebasing. can we make this pre-update, or, perhaps add it in a separate PR? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This particular module only runs as pre-commit - http://npmjs.com/pre-commit There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah we don't really need this, tests are run as part of CI here on github so we should be fine without it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll remove it if you think it makes things worst, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Broken PRs are just a rebase away from being working PRs There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, I'll kill the thing. :) My intention was to automate things, to reduce human workload. :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's no more. |
||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:airbnb/hypernova.git" | ||
|
@@ -63,6 +66,7 @@ | |
"istanbul": "^1.0.0-alpha.2", | ||
"mocha": "^2.5.3", | ||
"mocha-wrap": "^2.0.4", | ||
"pre-commit": "^1.1.3", | ||
"rimraf": "^2.5.2", | ||
"sinon": "^1.17.4", | ||
"sinon-sandbox": "^1.0.2" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can omit this :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.