Meteor Compilation - Error Output Doesn't Show Where Is The Error?
I am trying to run my meteor app, and get the following runtime error : While processing files with ecmascript (for target os.osx.x86_64): native: Unexpected token } at O
Solution 1:
It's not being super helpful, but it is telling you in line 2
native: Unexpected token }
Which means you have an unbalanced brace - If you are using a modern editor like Atom or Sublime (or others), then it should be able to highlight that for you.
I know it doesn't tell you which file, but look at the file you edited most recently, or even use
git difftool
to show you what has changed since your last commit
Solution 2:
Thanks to : https://github.com/meteor/meteor/issues/7259
I found There was an issue on my package.json file.
I don't really know which one : maybe a comma that shouldn't really be somewhere...
Post a Comment for "Meteor Compilation - Error Output Doesn't Show Where Is The Error?"