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
It'll install angular as well, so all good. Then if I copy the things to a test directory:
bower-copy --dest ./test
The test directory ends up containing angular.js (non-minified) and angular-cache.js (minified).
The problem is that all files ending up i the dest directory are non-minified except angular-cache. Perhaps angular-cache isn't configured correctly, but I have no idea. In any case it'd be nice to either have all dest files always non-minified, or always minified (with an option perhaps, and appending .min to the filename), or append .min to files that are going to end up minified instead of non-minified.
So it's inconsistent. Which in my particular case means that my deployment chain cannot determine which files are already minified and which ones still need minification.
The text was updated successfully, but these errors were encountered:
@thany This probably due to the 2 bower.json files in angular-cache and angular respectively. You'll get whatever they have marked as main in bower.json.
If I install angular-cache:
It'll install angular as well, so all good. Then if I copy the things to a test directory:
The test directory ends up containing angular.js (non-minified) and angular-cache.js (minified).
The problem is that all files ending up i the dest directory are non-minified except angular-cache. Perhaps angular-cache isn't configured correctly, but I have no idea. In any case it'd be nice to either have all dest files always non-minified, or always minified (with an option perhaps, and appending
.min
to the filename), or append.min
to files that are going to end up minified instead of non-minified.So it's inconsistent. Which in my particular case means that my deployment chain cannot determine which files are already minified and which ones still need minification.
The text was updated successfully, but these errors were encountered: