ember-cli / ember-cli/broccoli-asset-rewrite
Using template literals in assets path are not replaced with the finger printed checksum.
Open
- Dominant language
- JavaScript
- Stars
- 10
- Forks
- 50
- PR merge metrics
- No merged PRs in 30d
Description
Using string literals in asset path is not replacing the finger printed value because string literal expressions are not captured in the regex.
Example -
```javascript
`${this.get('assetPath')}/images/asset.png` // this has no effect
this.get('assetPath') + '/images/asset.png' // this works
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.