You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an application using your plugin, and all works fine until I uses the --optimize options while running brunch build.
Other scripts compile correctly while optimizing, I got the ember debug lines in the console, but it's telling me there is an unexpected = in the template.js file:
So as you can see there are problematic = first in Ember.TEMPLATES[= application] (where also application should be surrounded by quotes but isn't), and then in types:[= STRING] (which I can find in any "program" function created).
Feel free to ask for more information(s) to debug if needed.
The text was updated successfully, but these errors were encountered:
Just tested with precompile: no and got the same error (except the type:[= STRING]since it's not precompiled of course). Sounds like only the first template got compiled into
I have an application using your plugin, and all works fine until I uses the
--optimize
options while runningbrunch build
.Other scripts compile correctly while optimizing, I got the ember debug lines in the console, but it's telling me there is an unexpected
=
in the template.js file:Here is my config:
And I can see in this javascript, after reformatting it for better reading, where is the unexpected
=
(in fact there is not only one, but many):So as you can see there are problematic
=
first inEmber.TEMPLATES[= application]
(where also application should be surrounded by quotes but isn't), and then intypes:[= STRING]
(which I can find in any "program" function created).Feel free to ask for more information(s) to debug if needed.
The text was updated successfully, but these errors were encountered: