mod-build 3.5.6 → 3.5.7

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.5.7
4
+
5
+ - Making `maxRecursion` for our file include plugin in template.js a lot higher
6
+
3
7
  ## 3.5.6
4
8
 
5
9
  - Adding `inc` handlebars helper to template.js to increment a certain value by 1
@@ -131,7 +131,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
131
131
  '!' + siteSettings.srcFolder + '/' + siteSettings.templatesSubfolder + '/_partials/**/*.html'
132
132
  ])
133
133
  .pipe(gulpPlugins.handlebarsFileInclude(templatesData, {
134
- maxRecursion: 125,
134
+ maxRecursion: 500,
135
135
  handlebarsHelpers: handlebarsHelpers
136
136
  }))
137
137
  .pipe(gulp.dest(siteSettings.tmpFolder));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.5.6",
3
+ "version": "3.5.7",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"