@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.
@@ -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) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@normed/bundle",
3
3
  "author": "Normal Gaussian <normed.bundle@normal-gaussian.com>",
4
- "version": "2.0.5",
4
+ "version": "2.0.6",
5
5
  "bin": "bundles/bin/cli.js",
6
6
  "main": "bundles/index.js",
7
7
  "types": "dist",