mod-build 3.5.1--beta.20 → 3.5.1--beta.21

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.1
4
+
5
+ - `grab-shared-components` task was created; added to tasks.js, serve.js & build.js to grab the new shared-components folder from mod-site and copy them to your local env
6
+
3
7
  ## 3.5.0
4
8
 
5
9
  - `gulp-sass` package updated to version 5 to make it compatible with active LTS version of node
@@ -32,7 +32,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
32
32
  '/templates/modals/privacy/': ['/templates/modals/privacy/', 'index.html'],
33
33
  '/templates/modals/terms/': ['/templates/modals/terms/', 'index.html'],
34
34
  '/templates/qs-modals/contact-us/': ['/templates/modals/contact-us/', 'index.html'],
35
- '/templates/scripts/trusted-form.html': ['/templates/scripts/', 'trusted-form.html'],
35
+ '/templates/scripts/trusted-form.html': ['/templates/scripts/', 'trusted-form.html']
36
36
  };
37
37
 
38
38
  if (includeFaqLink) {
@@ -27,8 +27,8 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
27
27
  // key: inputPath, value: destPath
28
28
 
29
29
  externalResources = {
30
- '/shared-components/carousel/carousel.html': ['/shared-components/carousel', 'carousel.html'],
31
- '/shared-components/carousel/carousel.scss': ['/shared-components/carousel', '_carousel.scss']
30
+ '/shared-components/**/*.html': ['/shared-components/**', '*.html'],
31
+ '/shared-components/**/*.scss': ['/shared-components/**', '_*.scss']
32
32
  };
33
33
 
34
34
  if (!nodeEnv) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.5.1--beta.20",
3
+ "version": "3.5.1--beta.21",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"