Package Exports
- gulp-css-img-cachebust
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-css-img-cachebust) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-css-img-cachebust
Appends cachebust query parameters to image URLs within CSS files.
Before:
// BEFORE: style.css
body {
background: url('../img/darudesandstorm.jpg');
}After:
// AFTER: style.css
body {
background: url('../img/darudesandstorm.jpg?123456789');
}Amazing.