mod-build 4.0.56-beta.2 → 4.0.56-beta.3
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 +1 -1
- package/package.json +1 -1
- package/tasks/grab-cdn.js +0 -1
- package/tasks/grab-shared-scripts.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## 4.0.56
|
|
4
4
|
|
|
5
|
-
- Added `geolocation.min.js` to the `grab-shared-scripts` task to grab & hash that file during build (
|
|
5
|
+
- 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).
|
|
6
6
|
|
|
7
7
|
## 4.0.55
|
|
8
8
|
|
package/package.json
CHANGED
package/tasks/grab-cdn.js
CHANGED
|
@@ -81,7 +81,6 @@ export default async function(config) {
|
|
|
81
81
|
|
|
82
82
|
externalResources = {
|
|
83
83
|
'/quote/resources/mod-site/templates/scripts/trusted-form.html': [`${publicFolder}/resources/scripts/`, 'trusted-form.html'],
|
|
84
|
-
'/quote/resources/shared-resources/scripts/geolocation/geolocation.min.js': [`${publicFolder}/resources/scripts/geolocation/`, 'geolocation.min.js'],
|
|
85
84
|
'/quote/resources/data/tcpa.json': [`${srcFolder}/resources/data/`, 'tcpa.json']
|
|
86
85
|
};
|
|
87
86
|
|
|
@@ -142,7 +142,7 @@ const TASKS = {
|
|
|
142
142
|
srcReplaceFn: null
|
|
143
143
|
},
|
|
144
144
|
copyGeolocation: {
|
|
145
|
-
url: 'geolocation/geolocation.min.js',
|
|
145
|
+
url: 'shared-resources/scripts/geolocation/geolocation.min.js',
|
|
146
146
|
config: {
|
|
147
147
|
fileName: 'geolocationFileName',
|
|
148
148
|
dest: 'scripts/geolocation',
|