mod-build 4.0.67-beta.1 → 4.0.67
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/package.json +1 -1
- package/tasks/grab-cdn.js +2 -2
package/package.json
CHANGED
package/tasks/grab-cdn.js
CHANGED
|
@@ -81,7 +81,7 @@ 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/data/tcpa.json': [`${
|
|
84
|
+
'/quote/resources/data/tcpa.json': [`${srcFolder}/resources/data/`, 'tcpa.json']
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
// grab footer modals and place under the resources
|
|
@@ -109,7 +109,7 @@ export default async function(config) {
|
|
|
109
109
|
// theme JSON
|
|
110
110
|
if (isQSPage && themeFile) {
|
|
111
111
|
Object.assign(externalResources, {
|
|
112
|
-
[`/quote/resources/data/themes/${themeFile}.json`]: [`${
|
|
112
|
+
[`/quote/resources/data/themes/${themeFile}.json`]: [`${publicFolder}/data/`, 'theme.json']
|
|
113
113
|
});
|
|
114
114
|
}
|
|
115
115
|
|