@modern-js/utils 1.7.5 → 1.7.8
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/CHANGELOG.md +23 -0
- package/compiled/inquirer/index.js +2 -2
- package/compiled/webpack-chain/index.js +1 -0
- package/compiled/webpack-chain/license +373 -0
- package/compiled/webpack-chain/package.json +1 -0
- package/compiled/webpack-chain/types/index.d.ts +388 -0
- package/dist/applyOptionsChain.d.ts +2 -6
- package/dist/applyOptionsChain.js +3 -3
- package/dist/chainId.d.ts +116 -0
- package/dist/chainId.js +118 -0
- package/dist/ensureArray.d.ts +1 -0
- package/dist/ensureArray.js +10 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/monorepo.js +5 -1
- package/dist/path.d.ts +1 -1
- package/dist/path.js +1 -1
- package/dist/prettyInstructions.d.ts +3 -0
- package/dist/prettyInstructions.js +11 -4
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# @modern-js/utils
|
2
2
|
|
3
|
+
## 1.7.8
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 63c354ad5: fix normalizeToPosixPath utils function args would be null
|
8
|
+
- 073e9ad78: feat(webpack): improve utils of tools.webpack
|
9
|
+
- f4a7d49e1: fix: applyOptionsChain argument type
|
10
|
+
|
11
|
+
## 1.7.7
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- 9377d2d9d: feat: support addPlugins util in tools.postcss
|
16
|
+
- 8c9ad1749: feat(babel-preset-base): prebundle babel plugins
|
17
|
+
|
18
|
+
## 1.7.6
|
19
|
+
|
20
|
+
### Patch Changes
|
21
|
+
|
22
|
+
- 6451a098: fix: cyclic dependencies of @modern-js/core and @moden-js/webpack
|
23
|
+
- d5a2cfd8: fix(utils): isModernjsMonorepo should return false if there is no package.json
|
24
|
+
- 437367c6: fix(server): hmr not working when using proxy
|
25
|
+
|
3
26
|
## 1.7.5
|
4
27
|
|
5
28
|
### Patch Changes
|