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
<!-- concat:app.js--><scriptsrc="/js/lib/jquery.min.js"></script><scriptsrc="/js/lib/angular.min.js"></script><scriptsrc="/js/lib/angular-route.min.js"></script><scriptsrc="/js/lib/angularLocalStorage.js"></script><scriptsrc="/js/lib/angular-cookies.min.js"></script><scriptsrc="/js/lib/angular-animate.min.js"></script><scriptsrc="/js/order.coffee"></script><!-- only usefull for checkout --><scriptsrc="/js/basket.coffee"></script><scriptsrc="/js/webshop.coffee"></script><!-- concat:end-->
we should concat in prod mode to
<scriptsrc="/js/app.js"></script>
this can also be done for css.
The text was updated successfully, but these errors were encountered:
Not really. I can use browserify from the command line, and with a few scripts build my assets during continuous integration run. But it feels ankward to maintain several build scripts to package my application. I really don't know if it's possible, it's just an idea :) In my experience, js file concatenation is a less than ideal solution to package js assets :
we can forget to add a script tag
in our js files, dependencies are never explicit, and we easily forget where a method or class comes from
When we have something like this
we should concat in prod mode to
this can also be done for css.
The text was updated successfully, but these errors were encountered: