mod-build 3.5.0-beta.3 → 3.5.1--beta.1
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 +10 -0
- package/gulp-tasks/grab-cdn.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 3.5.0
|
|
4
|
+
|
|
5
|
+
- `gulp-sass` package updated to version 5 to make it compatible with active LTS version of node
|
|
6
|
+
- Updated `bootstrap-sass` to `^3.4.3` package version so that it can handle math.div feature in sass.
|
|
7
|
+
|
|
8
|
+
## 3.4.40
|
|
9
|
+
|
|
10
|
+
- Downgraded `bootstrap-sass` to version `3.4.1` as new version was breaking because of math.div feature.
|
package/gulp-tasks/grab-cdn.js
CHANGED
|
@@ -32,7 +32,8 @@ 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
|
+
'/shared-components/carousel/': ['/shared-components/carousel/', 'index.html'],
|
|
36
37
|
};
|
|
37
38
|
|
|
38
39
|
if (includeFaqLink) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mod-build",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1--beta.1",
|
|
4
4
|
"description": "Share components for S3 sites.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@babel/core": "^7.0.0",
|
|
12
12
|
"@babel/preset-env": "^7.0.0",
|
|
13
13
|
"@babel/register": "^7.0.0",
|
|
14
|
-
"bootstrap-sass": "^3.4.
|
|
14
|
+
"bootstrap-sass": "^3.4.3",
|
|
15
15
|
"browser-sync": "^2.18.6",
|
|
16
16
|
"del": "^3.0.0",
|
|
17
17
|
"gulp": "^3.9.1",
|