Hi everyone!
We are using ember-cli to compile our Ember app. In production env, we need to create the asset files minified and fingerprinted. The final name of the asset need to be someting like: assetname-checksum.min.css (or js).
We have the the following broccoli packages:
- ember-cli-compass-compiler: to create css files.
- broccoli-uglify-js: ember-cli default uglifying js package.
- broccoli-asset-rev: addon to fingerprint files
With those packages we have no option to configure the dest file name with “.min”
Any ideas about how to add the ‘.min’ in the filename before the extension of the file??