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
When using useminPrepare By default the flow is: concat -> uglify. but in my build I would like to skip the uglify step so I configured the flow with only concat. Thing is when I now build I get the following message from ngTemplate
[INFO] Running "ngtemplates:dist" (ngtemplates) task
[INFO] File .tmp/templateCache.js created.
[INFO] >> Usemin has not created uglify.generated yet!
Can you advice on if this is just a warning (i.e everything is ok) and how to get rid of this message?
The text was updated successfully, but these errors were encountered:
Google leads me here. I think I found a solution/workaround is in your useminPrepare task, you still keep the uglify step (or simply use the default), I think it will create those .generated tasks (which generates files to .tmp only), but in you main task, you just don't run the uglify step, then your files not uglified.
When using useminPrepare
By default the flow is: concat -> uglify.
but in my build I would like to skip theuglify
step so I configured the flow with onlyconcat
. Thing is when I now build I get the following message from ngTemplateCan you advice on if this is just a warning (i.e everything is ok) and how to get rid of this message?
The text was updated successfully, but these errors were encountered: