@jsenv/core 27.0.0-alpha.88 → 27.0.0-alpha.90
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/dist/main.js +1 -1
- package/package.json +12 -19
package/dist/main.js
CHANGED
|
@@ -10220,7 +10220,7 @@ const readCustomConditionsFromProcessArgs = () => {
|
|
|
10220
10220
|
}
|
|
10221
10221
|
|
|
10222
10222
|
if (arg.includes("--conditions=")) {
|
|
10223
|
-
const packageCondition = arg.slice(
|
|
10223
|
+
const packageCondition = arg.slice("--conditions=".length);
|
|
10224
10224
|
packageConditions.push(packageCondition);
|
|
10225
10225
|
}
|
|
10226
10226
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "27.0.0-alpha.
|
|
3
|
+
"version": "27.0.0-alpha.90",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -66,20 +66,27 @@
|
|
|
66
66
|
"@c88/v8-coverage": "0.1.1",
|
|
67
67
|
"@financial-times/polyfill-useragent-normaliser": "2.0.1",
|
|
68
68
|
"@jsenv/ast": "1.1.1",
|
|
69
|
+
"@jsenv/abort": "4.2.3",
|
|
70
|
+
"@jsenv/filesystem": "4.0.10",
|
|
71
|
+
"@jsenv/importmap": "1.2.1",
|
|
72
|
+
"@jsenv/integrity": "0.0.1",
|
|
73
|
+
"@jsenv/node-esm-resolution": "0.1.0",
|
|
74
|
+
"@jsenv/server": "12.7.2",
|
|
75
|
+
"@jsenv/uneval": "1.6.0",
|
|
76
|
+
"@jsenv/url-meta": "7.0.0",
|
|
77
|
+
"@jsenv/urls": "1.2.6",
|
|
78
|
+
"@jsenv/utils": "2.0.1",
|
|
69
79
|
"@jsenv/babel-plugins": "1.0.5",
|
|
70
80
|
"@jsenv/log": "2.0.1",
|
|
71
81
|
"@jsenv/sourcemap": "1.0.1",
|
|
72
82
|
"acorn-import-assertions": "1.8.0",
|
|
73
|
-
"construct-style-sheets-polyfill": "3.1.0",
|
|
74
83
|
"cuid": "2.1.8",
|
|
75
|
-
"es-iife": "0.2.2",
|
|
76
84
|
"html-minifier": "4.0.0",
|
|
77
85
|
"istanbul-lib-coverage": "3.2.0",
|
|
78
86
|
"istanbul-lib-instrument": "5.2.0",
|
|
79
87
|
"istanbul-lib-report": "3.0.0",
|
|
80
88
|
"istanbul-reports": "3.1.4",
|
|
81
89
|
"pidtree": "0.6.0",
|
|
82
|
-
"regenerator-runtime": "0.13.9",
|
|
83
90
|
"rollup": "2.75.6",
|
|
84
91
|
"string-width": "5.1.2",
|
|
85
92
|
"strip-ansi": "7.0.1",
|
|
@@ -90,31 +97,17 @@
|
|
|
90
97
|
"devDependencies": {
|
|
91
98
|
"@babel/eslint-parser": "7.18.2",
|
|
92
99
|
"@babel/plugin-syntax-import-assertions": "7.17.12",
|
|
93
|
-
"@jsenv/abort": "4.2.3",
|
|
94
100
|
"@jsenv/assert": "2.5.4",
|
|
95
101
|
"@jsenv/eslint-config": "16.0.9",
|
|
96
102
|
"@jsenv/file-size-impact": "12.1.13",
|
|
97
|
-
"@jsenv/filesystem": "4.0.10",
|
|
98
103
|
"@jsenv/https-local": "1.1.0",
|
|
99
|
-
"@jsenv/importmap": "1.2.1",
|
|
100
|
-
"@jsenv/importmap-node-module": "5.1.3",
|
|
101
|
-
"@jsenv/integrity": "0.0.1",
|
|
102
|
-
"@jsenv/node-esm-resolution": "0.1.0",
|
|
103
104
|
"@jsenv/package-workspace": "0.2.1",
|
|
104
105
|
"@jsenv/performance-impact": "2.2.11",
|
|
105
|
-
"@jsenv/pwa": "5.0.0",
|
|
106
|
-
"@jsenv/server": "12.7.2",
|
|
107
|
-
"@jsenv/uneval": "1.6.0",
|
|
108
|
-
"@jsenv/url-meta": "7.0.0",
|
|
109
|
-
"@jsenv/urls": "1.2.6",
|
|
110
|
-
"@jsenv/utils": "2.0.1",
|
|
111
106
|
"eslint": "8.17.0",
|
|
112
107
|
"eslint-plugin-html": "6.2.0",
|
|
113
108
|
"eslint-plugin-import": "2.26.0",
|
|
114
109
|
"eslint-plugin-react": "7.30.0",
|
|
115
110
|
"playwright": "1.22.2",
|
|
116
|
-
"
|
|
117
|
-
"prettier": "2.7.1",
|
|
118
|
-
"redux": "4.1.2"
|
|
111
|
+
"prettier": "2.7.1"
|
|
119
112
|
}
|
|
120
113
|
}
|