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 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 (leaving the file in `grab-cdn` task to not break what is currently there).
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "4.0.56-beta.2",
3
+ "version": "4.0.56-beta.3",
4
4
  "description": "Share components for S3 sites.",
5
5
  "type": "module",
6
6
  "scripts": {
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',