@normed/bundle 2.0.5 → 2.0.6
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/bundles/bin/cli.js +1 -1
- package/bundles/index.js +1 -1
- package/package.json +1 -1
package/bundles/bin/cli.js
CHANGED
|
@@ -128351,7 +128351,7 @@ function toLoader(v) {
|
|
|
128351
128351
|
}
|
|
128352
128352
|
}
|
|
128353
128353
|
function quoteString(string) {
|
|
128354
|
-
return string.replace(/[\\"]/g, "\\$&")
|
|
128354
|
+
return `"${string.replace(/[\\"]/g, "\\$&")}"`;
|
|
128355
128355
|
}
|
|
128356
128356
|
var filter2 = /.*\.(j|t)sx?$/;
|
|
128357
128357
|
var plugin = (options2) => {
|
package/bundles/index.js
CHANGED
|
@@ -128359,7 +128359,7 @@ function toLoader(v) {
|
|
|
128359
128359
|
}
|
|
128360
128360
|
}
|
|
128361
128361
|
function quoteString(string) {
|
|
128362
|
-
return string.replace(/[\\"]/g, "\\$&")
|
|
128362
|
+
return `"${string.replace(/[\\"]/g, "\\$&")}"`;
|
|
128363
128363
|
}
|
|
128364
128364
|
var filter2 = /.*\.(j|t)sx?$/;
|
|
128365
128365
|
var plugin = (options) => {
|