mod-build 4.0.56 → 4.0.57
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/package.json +1 -1
- package/src/scripts/utils.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.0.57
|
|
4
|
+
|
|
5
|
+
- Removed `GUTTERS`, `GUTTER_COVERS`, & `SOLAR` from the TCPA placement configurations.
|
|
6
|
+
|
|
3
7
|
## 4.0.56
|
|
4
8
|
|
|
5
9
|
- Added `geolocation.min.js` to the `grab-shared-scripts` task to grab & hash that file during build (removed it from `grab-cdn` task as the `grab-shared-scripts` will automatically add the base file to the folders).
|
package/package.json
CHANGED
package/src/scripts/utils.js
CHANGED
|
@@ -44,7 +44,7 @@ function handlebarsX(expression, context) {
|
|
|
44
44
|
return result;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
const tradesWithTcpaAboveCta = ['
|
|
47
|
+
const tradesWithTcpaAboveCta = ['HOME_SECURITY'];
|
|
48
48
|
|
|
49
49
|
export const handlebarsHelpers = [
|
|
50
50
|
// Run any js line
|