mod-build 3.6.1--beta.15 → 3.6.1--beta.16

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.
@@ -66,6 +66,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
66
66
  }
67
67
  }
68
68
  },
69
+ // Check to see if seasonal updates
69
70
  {
70
71
  name: 'makeSeasonalUpdates',
71
72
  fn: function(season) {
@@ -82,6 +83,16 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
82
83
 
83
84
  }
84
85
  },
86
+ {
87
+ name: 'ifhelper',
88
+ fn: function(conditional, block) {
89
+ if(conditional) {
90
+ return block(this);
91
+ } else {
92
+ return block.inverse(this);
93
+ }
94
+ }
95
+ },
85
96
  // Convert string to uppercase
86
97
  {
87
98
  name: 'uppercase',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.1--beta.15",
3
+ "version": "3.6.1--beta.16",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"