@modern-js/utils 1.7.1-alpha.0 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/package.json +15 -6
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "1.7.
|
14
|
+
"version": "1.7.2",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/index.d.ts",
|
17
17
|
"main": "./dist/index.js",
|
@@ -22,7 +22,20 @@
|
|
22
22
|
".": "./dist/index.js",
|
23
23
|
"./format": "./dist/format.js",
|
24
24
|
"./constants": "./dist/constants.js",
|
25
|
-
"./ssr": "./dist/ssr.js"
|
25
|
+
"./ssr": "./dist/ssr.js",
|
26
|
+
"./chalk": "./compiled/chalk/index.js",
|
27
|
+
"./json5": "./compiled/json5/index.js",
|
28
|
+
"./semver": "./compiled/semver/index.js",
|
29
|
+
"./lodash": "./compiled/lodash/index.js",
|
30
|
+
"./globby": "./compiled/globby/index.js",
|
31
|
+
"./fast-glob": "./compiled/fast-glob/index.js",
|
32
|
+
"./gzip-size": "./compiled/gzip-size/index.js",
|
33
|
+
"./mime-types": "./compiled/mime-types/index.js",
|
34
|
+
"./strip-ansi": "./compiled/strip-ansi/index.js"
|
35
|
+
},
|
36
|
+
"publishConfig": {
|
37
|
+
"registry": "https://registry.npmjs.org/",
|
38
|
+
"access": "public"
|
26
39
|
},
|
27
40
|
"typesVersions": {
|
28
41
|
"*": {
|
@@ -79,10 +92,6 @@
|
|
79
92
|
"webpack": "^5.71.0"
|
80
93
|
},
|
81
94
|
"sideEffects": false,
|
82
|
-
"publishConfig": {
|
83
|
-
"registry": "https://registry.npmjs.org/",
|
84
|
-
"access": "public"
|
85
|
-
},
|
86
95
|
"scripts": {
|
87
96
|
"new": "modern new",
|
88
97
|
"dev": "tsc --watch",
|