mod-build 3.6.32-beta.8 → 3.6.33

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.33
4
+
5
+ - chained the `.pipe(replace())` lines within the `replaceFootAssetScripts` function inside our `grab-shared-scripts` task to run after the previous has been completed — in hopes to keep our foot assets paths from getting incomplete paths during deployment
6
+
3
7
  ## 3.6.32
4
8
 
5
9
  - made changes in `grab-cdn` task to copy footer templates
@@ -4,7 +4,7 @@ var replace = require('gulp-replace');
4
4
  var hash = require('gulp-hash');
5
5
  var tap = require('gulp-tap');
6
6
  var path = require('path');
7
- var async = require('async');
7
+
8
8
  const fileNames = {
9
9
  modAlyticsFileName: '',
10
10
  modUtilsFileName: '',
@@ -17,6 +17,7 @@ const fileNames = {
17
17
  };
18
18
  var isQuotePageOrUseRelativePath = false;
19
19
  var resourceURL = '';
20
+
20
21
  function replaceModalyticsSrc(gulp, gulpPlugins, siteSettings, siteData) {
21
22
  const resourcePath = isQuotePageOrUseRelativePath ? '{{#if this.src}}{{this.src}}{{/if}}resources/scripts/mod-alytics/' : '/resources/scripts/mod-alytics/';
22
23
  return gulp.src(siteSettings.srcFolder + '/shared-components/head/head.html')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.32-beta.8",
3
+ "version": "3.6.33",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"