mod-build 3.6.74-beta.1 → 3.6.74-beta.2

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.74-beta.2
4
+
5
+ - Placed update-modalytics-path task just after grab-shared-scripts
6
+
3
7
  ## 3.6.74-beta.1
4
8
 
5
9
  - Updating modalytics script path with a new task if isPathSubdirectory flag present in SiteData
@@ -22,7 +22,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
22
22
 
23
23
  if (siteData.isPathSubdirectory) {
24
24
  const index = sequenceOpts.indexOf('grab-shared-scripts');
25
- sequenceOpts.splice(index, 0, 'update-modalytics-path');
25
+ sequenceOpts.splice(index + 1, 0, 'update-modalytics-path');
26
26
  }
27
27
 
28
28
  runSequence(...sequenceOpts, function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.74-beta.1",
3
+ "version": "3.6.74-beta.2",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",