mod-build 3.6.99-beta.5 → 3.6.100
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 +4 -0
- package/gulp-tasks/js-lint.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.100
|
|
4
|
+
|
|
5
|
+
- JSLint failure is back! *(needed a brief pause while implementing modernize consent)*
|
|
6
|
+
|
|
3
7
|
## 3.6.99
|
|
4
8
|
|
|
5
9
|
- Updating final TCPA text from `fetchTcpaFromSitegenie()` with the Modernize consent checkbox + Privacy & Terms of Use modal links.
|
package/gulp-tasks/js-lint.js
CHANGED
|
@@ -20,7 +20,7 @@ module.exports = function(gulp, _gulpPlugins, siteSettings) {
|
|
|
20
20
|
])
|
|
21
21
|
.pipe(gulpESLintNew(siteSettings.jsLint))
|
|
22
22
|
.pipe(gulpESLintNew.format())
|
|
23
|
-
.pipe(gulpESLintNew.format('junit', fs.createWriteStream('eslint-results.xml')))
|
|
24
|
-
|
|
23
|
+
.pipe(gulpESLintNew.format('junit', fs.createWriteStream('eslint-results.xml')))
|
|
24
|
+
.pipe(gulpESLintNew.failAfterError());
|
|
25
25
|
};
|
|
26
26
|
};
|