-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
CoffeeScript 2 support #39
Comments
Or I could try this for now iHaiduk@9e759db |
@michaelforrest seems CoffeeScripts v2 in beta, i think it is breaking changes. Let's wait stable release and upgrade loader deps |
So it looks like the peerDependencies in |
agree. The previous commit (5c5e35a) has done the coffeescript2 support, but not published to npm yet. |
Npm publish pls? :) Even with a beta tag |
what's the holdup? we're all waiting :o |
Hoping to use coffeescript-beta3 in pending web pack project. Could you let us know the NPM publish ETA please? WORKAROUND |
Or add this to package.json |
By requiring coffeescript instead of coffee-script in line 5 in 'node_modules/coffee-loader/index.js' did work for me and i was able to use jsx as v2 supports. |
The workaround that I use is to define a module alias. The package module-alias helps you do this. Then I have my package.json like this: "_moduleAliases": {
"coffee-script": "node_modules/coffeescript/lib/coffeescript"
} And I just call |
If someone is interested in helping with |
@evilebottnawi 5c5e35a switched from The problem is that |
@renchap Send request on release in |
thanks @evilebottnawi . That would be a life saver! 👍 |
@d3viant0ne Thanks a lot! {
"dependencies": {
"coffeescript": "next",
"coffee-loader": "^0.8.0"
}
} This issue should be closed. |
Does anybody use coffescript 2 in nuxt vue component? I am trying to get it works, but still failing.
Here's the code: index.vue
package.json
|
Welp, looks like when using coffescript I have to disable eslint |
Still get the same error in package.json
error:
Note that the file in question contains jsx, which should be natively supported |
@garviand, what do you mean by "the same"? Just to be sure, have you tried completely removing node_modules and reinstalling it again? Just to make sure you are really using the latest versions? |
An error on my end. I was compiling coffeescript before calling webpack functions... Sorry! |
I'd like to try CoffeeScript 2 in my project but I get
[email protected] requires a peer of [email protected] but none was installed
.I'll see what happens if I change this and submit a PR if it seems to work okay?
The text was updated successfully, but these errors were encountered: