@modern-js/plugin-module-babel 2.22.1 → 2.23.1
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 +19 -0
- package/README.md +2 -2
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @modern-js/plugin-module-babel
|
|
2
2
|
|
|
3
|
+
## 2.23.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @modern-js/module-tools@2.23.1
|
|
8
|
+
|
|
9
|
+
## 2.23.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7e6fb5f: chore: publishConfig add provenance config
|
|
14
|
+
|
|
15
|
+
chore: publishConfig 增加 provenance 配置
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [7e6fb5f]
|
|
18
|
+
- Updated dependencies [21b7f86]
|
|
19
|
+
- Updated dependencies [d1ef55f]
|
|
20
|
+
- @modern-js/module-tools@2.23.0
|
|
21
|
+
|
|
3
22
|
## 2.22.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @modern-js/plugin-module-babel
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The Babel plugin of Modern.js Module Tools.
|
|
4
4
|
|
|
5
|
-
You can add
|
|
5
|
+
You can add Babel compile by the plugin before module-tools internal building.
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"modern",
|
|
16
16
|
"modern.js"
|
|
17
17
|
],
|
|
18
|
-
"version": "2.
|
|
18
|
+
"version": "2.23.1",
|
|
19
19
|
"types": "./dist/index.d.ts",
|
|
20
20
|
"main": "./dist/index.js",
|
|
21
21
|
"dependencies": {
|
|
@@ -26,17 +26,18 @@
|
|
|
26
26
|
"@types/node": "^14",
|
|
27
27
|
"typescript": "^5",
|
|
28
28
|
"jest": "^29",
|
|
29
|
-
"@scripts/build": "2.
|
|
30
|
-
"@modern-js/module-tools": "2.
|
|
31
|
-
"@scripts/jest-config": "2.
|
|
29
|
+
"@scripts/build": "2.23.1",
|
|
30
|
+
"@modern-js/module-tools": "2.23.1",
|
|
31
|
+
"@scripts/jest-config": "2.23.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@modern-js/module-tools": "^2.
|
|
34
|
+
"@modern-js/module-tools": "^2.23.1"
|
|
35
35
|
},
|
|
36
36
|
"sideEffects": false,
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"registry": "https://registry.npmjs.org/",
|
|
39
|
-
"access": "public"
|
|
39
|
+
"access": "public",
|
|
40
|
+
"provenance": true
|
|
40
41
|
},
|
|
41
42
|
"scripts": {
|
|
42
43
|
"dev": "mdn build --watch",
|