mod-build 3.6.71 → 3.6.72

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.72
4
+
5
+ - Updating "isFontPresent" flag name to "copyLocalFontFile"
6
+
3
7
  ## 3.6.71
4
8
 
5
9
  - Implemented copy-font gulp task based on configuration . Also update cache-bust task to not to include font files.
@@ -16,7 +16,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
16
16
  sequenceOpts = ['clean', 'grab-cdn', 'grab-shared-components', 'grab-shared-scripts', 'grab-form-helpers', 'templates', 'styles', 'copy-videos', 'js-lint', 'html-min', 'css-min', 'js-min', 'img-min', 'extras', 'cache-bust', 'add-path-subdirectories', 'copy-resources-to-dist', 'build-stat'];
17
17
  }
18
18
 
19
- if (siteData.isFontPresent) {
19
+ if (siteData.copyLocalFontFile) {
20
20
  sequenceOpts.push('copy-fonts');
21
21
  }
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.71",
3
+ "version": "3.6.72",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",