mod-build 3.6.12 → 3.6.13

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.6.13
4
+
5
+ - Adding in `dontSearchFile` param to `cache-bust` gulp task so it doesn't cache bust any paths in our local resources/ folder.
6
+
3
7
  ## 3.6.12
4
8
 
5
9
  - In the `grab-shared-scripts` gulp task, we will no longer be replacing mod-footer.css for quote pages. We ran into a bug with split URL test pages, and since the original file lives on the same domain, we will leave as is.
@@ -3,6 +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)\/.*/],
6
7
  dontRenameFile: [/^\/favicon.ico$/g, '.html', '.txt', /modlogo([\w|\s|-])*\.(?:svg)/g, /(resources)\/.*/],
7
8
  dontUpdateReference: [/^\/favicon.ico$/g, '.html', '.txt', /modlogo([\w|\s|-])*\.(?:svg)/g, /(resources)\/.*/],
8
9
  transformFilename: function (file, hash) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.12",
3
+ "version": "3.6.13",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"