-
Notifications
You must be signed in to change notification settings - Fork 2k
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
1.12.4 #4441
1.12.4 #4441
Conversation
…ll CoffeeScript the non-NPM way
…ollowing the same form
…nless it’s explicitly excluded
documentation/sections/changelog.md
Outdated
releaseHeader('2017-02-15', '1.12.4', '1.12.3') | ||
``` | ||
|
||
* The `cake` commands have been updated, with new `watch` options for most tasks. Clone the [CoffeeScript repo](https://github.com/jashkenas/coffeescript) and run `cake` at the root of the repo to see the options. |
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.
As someone who has worked on the CoffeeScript source code, this is easily the most exciting part of the changelog. But do "regular users" even care? I'm not sure that we should mention the changes to CoffeeScript's internal Cakefile here – might just be confusing?
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.
I agree. I thought it was worth mentioning because the docs mentioned the cake commands, though I've been removing those references. They're still mentioned all over the place in the wiki etc.
Cakefile
Outdated
fs.watch 'test/', | ||
interval: 200 | ||
recursive: yes | ||
, (eventType, filename) -> |
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.
Naked leading comma is poor CoffeeScript style — wrap the object in braces.
@lydell I think this should be ready to go. This would be the last release before 2.0.0-alpha1 🍾 |
Per the changelog:
cake
commands have been updated, with newwatch
options for most tasks. Clone the CoffeeScript repo and runcake
at the root of the repo to see the options.export
ing a referenced variable was preventing the variable from being declared.coffee
command wasn’t working for a.litcoffee
file.Includes #4440, assuming that will be merged in soon. If that requires more work, I’ll merge that branch into this one as needed.