mod-build 3.6.86 → 3.6.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/gulp-tasks/cache-bust.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.87
|
|
4
|
+
|
|
5
|
+
- Updated the `cache-bust` gulp task to exclude our entire `scripts/` folder when updating asset names.
|
|
6
|
+
|
|
3
7
|
## 3.6.86
|
|
4
8
|
|
|
5
9
|
- Updated the `add-path-subdirectories` task to include `<video>` tag attributes in the replacements, as well as fixing a bug for replacing `accessible-components/` paths
|
package/gulp-tasks/cache-bust.js
CHANGED
|
@@ -3,7 +3,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings) {
|
|
|
3
3
|
return function() {
|
|
4
4
|
return gulp.src(siteSettings.distFolder + '/**')
|
|
5
5
|
.pipe(gulpPlugins.revAll.revision({
|
|
6
|
-
dontSearchFile: [/(resources)\/.*/, /(scripts
|
|
6
|
+
dontSearchFile: [/(resources)\/.*/, /(scripts)\/.*/, /(fonts)\/.*/],
|
|
7
7
|
dontRenameFile: [/^\/favicon.ico$/g, '.html', '.txt', /modlogo([\w|\s|-])*\.(?:svg)/g, /(resources)\/.*/, /(fonts)\/.*/],
|
|
8
8
|
dontUpdateReference: [/^\/favicon.ico$/g, '.html', '.txt', /modlogo([\w|\s|-])*\.(?:svg)/g, /(resources)\/.*/, /(fonts)\/.*/],
|
|
9
9
|
transformFilename: function (file, hash) {
|