canopy-webpack-config 4.4.1 → 4.4.2
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
CHANGED
|
@@ -28,7 +28,7 @@ module.exports = function (name, overridesConfig = {}, options = {}) {
|
|
|
28
28
|
const { typescript, externals } = options;
|
|
29
29
|
if (typeof name !== "string") {
|
|
30
30
|
throw new Error(
|
|
31
|
-
"canopy-webpack-config expects a string name as the first argument"
|
|
31
|
+
"canopy-webpack-config expects a string name as the first argument",
|
|
32
32
|
);
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -38,7 +38,7 @@ module.exports = function (name, overridesConfig = {}, options = {}) {
|
|
|
38
38
|
) {
|
|
39
39
|
throw new Error(
|
|
40
40
|
"canopy-webpack-config expects an object as a second argument to override the canopy defaults. Received " +
|
|
41
|
-
typeof overridesConfig
|
|
41
|
+
typeof overridesConfig,
|
|
42
42
|
);
|
|
43
43
|
}
|
|
44
44
|
|
|
@@ -119,7 +119,7 @@ module.exports = function (name, overridesConfig = {}, options = {}) {
|
|
|
119
119
|
/^single-spa-canopy$/,
|
|
120
120
|
/^single-spa$/,
|
|
121
121
|
/^sofe$/,
|
|
122
|
-
/^@canopytax
|
|
122
|
+
/^@canopytax\//,
|
|
123
123
|
/^cp-analytics$/,
|
|
124
124
|
/^react-hook-form$/,
|
|
125
125
|
/^react-router-dom-v6$/,
|