mod-build 3.5.5--beta.1 → 3.5.5--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 +4 -0
- package/gulp-tasks/templates.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.5.6
|
|
4
|
+
|
|
5
|
+
- Adding `inc` handlebars helper to template.js to increment a certain value by 1
|
|
6
|
+
|
|
3
7
|
## 3.5.5
|
|
4
8
|
|
|
5
9
|
- Added functionality to don't include the gtm script if `nogtm=true` parameter is present in vwo_callback.html/analytics.html fileInclude call (from site level). This is useful in late loading gtm on test versions.
|
package/gulp-tasks/templates.js
CHANGED
|
@@ -118,8 +118,8 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
118
118
|
// Adding increment of 1 to value
|
|
119
119
|
{
|
|
120
120
|
name: 'inc',
|
|
121
|
-
fn: function(
|
|
122
|
-
return
|
|
121
|
+
fn: function(index) {
|
|
122
|
+
return index++;
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
];
|