broccoli-asset-rev
broccoli-asset-rev copied to clipboard
Broccoli plugin to add fingerprint checksums and CDN URLs to your assets
I ran into a very unique case in an Ember app's JS filename is referenced in the app code, but is not intended to be an asset path. I'd like...
Hi! Thanks for the infrastructural addon! ### Problem I need to access files over network. With the current implementation of `broccoli-asset-map`, I have the following options: * Disable fingerprinting on...
Bumps [codecov](https://github.com/codecov/codecov-node) from 1.0.1 to 3.7.1. Release notes Sourced from codecov's releases. v3.6.4 Fix for Cirrus CI v3.6.3 AWS Codebuild fixes + package updates v3.6.2 command line args sanitised v3.6.1...
Sort-of FIXES https://github.com/rickharrison/broccoli-asset-rev/issues/29 (or more like works around it). For cases where you know which files have references to other files that are in the replaceExtensions (by default JS, HTML,...
Checksums of files that reference other assets should take into account the names of those nested assets after they've been revisioned. A simple example of when this surfaces is anytime...
For example: ```javascript fetch('assetMap.json') ``` results in ```javascript fetch('https://cdn.com/assets/assets/assetMap.json') ``` ...notice `assets/assets` when it should be: ```javascript fetch('https://cdn.com/assets/assetMap.json') ```
@rickharrison Would you be willing to add more maintainers to this project? E.g. to help with issue gardening, updating the broccoli plugin, etc. Perhaps you could also write down a...
I'm trying to use this plugin with CSS source maps, but I can't get it to work in any fashion because this plugin doesn't understand the double extension. With this...
I am trying to load the app by using `ember serve`. Some of the images are not found error getting. In CSS : background-image: url(assets/images/image.svg); its redirected to > http://localhost:4200/assets/assets/images/image.svg...
Hi. I'm adding a loading image, to index.html, in an Ember.JS project. The problem is that, after fingerprinting this: ``` ``` ``` ``` The problem is that, it removes the...