@jsenv/core 29.1.11 → 29.1.12

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.
Files changed (2) hide show
  1. package/dist/main.js +2 -2
  2. package/package.json +4 -4
package/dist/main.js CHANGED
@@ -19617,11 +19617,11 @@ const mainLegacyResolvers = {
19617
19617
  };
19618
19618
 
19619
19619
  const comparePatternKeys = (keyA, keyB) => {
19620
- if (!keyA.endsWith("/") && !keyA.contains("*")) {
19620
+ if (!keyA.endsWith("/") && !keyA.includes("*")) {
19621
19621
  throw new Error("Invalid package configuration");
19622
19622
  }
19623
19623
 
19624
- if (!keyB.endsWith("/") && !keyB.contains("*")) {
19624
+ if (!keyB.endsWith("/") && !keyB.includes("*")) {
19625
19625
  throw new Error("Invalid package configuration");
19626
19626
  }
19627
19627
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "29.1.11",
3
+ "version": "29.1.12",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -72,7 +72,7 @@
72
72
  "@jsenv/importmap": "1.2.1",
73
73
  "@jsenv/integrity": "0.0.1",
74
74
  "@jsenv/log": "3.3.1",
75
- "@jsenv/node-esm-resolution": "0.1.0",
75
+ "@jsenv/node-esm-resolution": "0.1.1",
76
76
  "@jsenv/server": "14.1.7",
77
77
  "@jsenv/sourcemap": "1.0.5",
78
78
  "@jsenv/uneval": "1.6.0",
@@ -84,7 +84,7 @@
84
84
  "cuid": "2.1.8",
85
85
  "html-minifier": "4.0.0",
86
86
  "istanbul-lib-coverage": "3.2.0",
87
- "istanbul-lib-instrument": "5.2.0",
87
+ "istanbul-lib-instrument": "5.2.1",
88
88
  "istanbul-lib-report": "3.0.0",
89
89
  "istanbul-reports": "3.1.5",
90
90
  "launch-editor": "2.6.0",
@@ -92,7 +92,7 @@
92
92
  "rollup": "2.79.1",
93
93
  "string-width": "5.1.2",
94
94
  "strip-ansi": "7.0.1",
95
- "terser": "5.15.0",
95
+ "terser": "5.15.1",
96
96
  "v8-to-istanbul": "9.0.1",
97
97
  "wrap-ansi": "8.0.1"
98
98
  },