-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed Mocha for CoffeeScript 1.7+ and Travis CI errors #6
Changes from 5 commits
284aa9c
c651c0c
0304d08
fc99e6d
0b0facd
ac91c88
0a20f19
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 |
---|---|---|
|
@@ -3,4 +3,6 @@ node_js: | |
- "0.11" | ||
- "0.10" | ||
notifications: | ||
email: false | ||
email: false | ||
before_script: | ||
- npm install coffee-script grunt-cli | ||
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. Do we get failures without this? 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. Yes. About 2 weeks ago I enabled Travis CI for all my scripts. On Node 0.11, I seemed to be getting errors related to Grunt not being found, and on 0.10, it was the: EDIT: Assuming that we do end up adding CoffeeScript as a dependency (explicitly), then we can take the EDIT 2: Woops. Looks like it has already been done (41e0657). We can remove |
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.
package.json
still has [email protected] for development. So, probably need to bump that, or revert this change.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.
If we do revert this, we may be locking all future Hubot scripts to < CoffeeScript 1.7. I'm not sure what's the best way to go about this (perhaps some condition for Travis?), but I personally feel that we should just bump it as it should only affect newly generated scripts.Sorry, my bad. It's the generator's CoffeeScript version that you're referring to. Yea, we can revert this.