broccoli-asset-rev
broccoli-asset-rev copied to clipboard
Broccoli plugin to add fingerprint checksums and CDN URLs to your assets
Solution to #122, same solution as #130 but it now includes tests to demonstrate the problem.
seems like a risk
this addon brings older versions of many broccoli plugins currently
https://github.com/rickharrison/broccoli-asset-rev/blob/master/package.json#L35
* ember-cli 2.11.1 * broccoli-asset-rev 2.6.0 I'm getting multiple `assetMap.json` files with v2.6.0 when I have `fingerprintAssetMap: true`. One file is correct, while the other is empty. Also of note...
```js class Foo { imagePath = `${imageDir}/sample.png`; } ``` This doesn't get rewritten with the asset rev. One use case for this is in an Ember app that specifies a...
hi, @rickharrison now , in ember-cli config , i can generate hash files with sourcemap files, like this: ``` vendor-fce6de4e72c198ba468a0eb2c83d1fb4.js vendor-637ec5408a9ef70307a43842b526828d.map ``` but, we hope the mapfile name is same...
from https://github.com/emberjs/rfcs/pull/648 this PR adds default support for file suffixes: `svg`, `webp`, `mp4`, `webmanifest` and `json`
Take the example code below: ```js class Application { foo() { return bar(`${this.path}/application.js`); } } ``` The particular line of interest is where we have a template literal. ```js return...
Reproduction of https://github.com/ember-cli/broccoli-asset-rev/issues/143