-
Notifications
You must be signed in to change notification settings - Fork 757
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
Unexpected token punc «}», expected punc «:» #546
Comments
This suggests to me that assets have been concatenated but some of the files weren't "compiled" by Babel. You might be able to find exactly where the failure is by searching This happened to me last week because I had "ES6" in a file that didn't have a |
@rmosolgo You are right. I tried disabling the uglifier in my project and it worked like a charm. Still have to find where exactly this issue occurs, but atleast I know what it is. Thanks for the quick reply 🍰 |
I had this same error yesterday and was getting really frustrated so to save some future headaches for someone else: I renamed some components yesterday and while doing so accidentally left off .js. Ex:
It will work in development and doesn't throw anything in console, but will break on production asset compilation and give the same error as above (Not complaining about any js or jsx files). Tricky. |
I just met this bug and still crazy about it. I used |
@hieuhlc The transpiler responsible for transpiling The options exist thats for sure, I just haven't found the time yet to figure out the configuration part. |
Ok after 5 times search all files in project I finally found a file with a small pieces of code contains ES6 syntax. It was so small. Thank you guys. |
The ext |
@hieuhlc Had the same issue, I just think it would be nice to have this configurable. For example lets say I'm using es6 & jsx by default, I don't want to have a suffix saying a particular file is es6 with jsx by appending the Future reference for available extensions: react-rails/lib/react/rails/railtie.rb Line 105 in deb8cb6
|
I figured out a easy way to identify the place where we might be using es6 syntax. Run the below code in rails console and you will get it
|
@kaushik-sundar Thanks for that great idea! Your code didn't quite work for me (garbled characters?) but this did:
|
For some reason, we were not getting the exact error place, this is what fixed issue and we got actual place where error was coming from. |
Help us help you! Please choose one:
react-rails
, so I've included the stack trace and the exact steps which make it crash.react-rails
with another library, but I'm having trouble. I've described my JavaScript management setup (eg, Sprockets, Webpack...), how I'm trying to use this other library, and why it's not working.I'm trying to push my app towards heroku's cloud but I'm unable to compile the assets on production. However I'm able to run development without the problem stated below.
I'm using a multi buildpack setup that:
My guess is I'm missing a dependency in production that I already have in development.
Do I need to install babel as a dependency on heroku?
Stacktrace:
The text was updated successfully, but these errors were encountered: