@modern-js/plugin 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 +23 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# @modern-js/plugin
|
2
2
|
|
3
|
+
## 2.23.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [f08bbfc]
|
8
|
+
- Updated dependencies [a6b313a]
|
9
|
+
- Updated dependencies [8f2cab0]
|
10
|
+
- @modern-js/utils@2.23.1
|
11
|
+
|
12
|
+
## 2.23.0
|
13
|
+
|
14
|
+
### Patch Changes
|
15
|
+
|
16
|
+
- 7e6fb5f: chore: publishConfig add provenance config
|
17
|
+
|
18
|
+
chore: publishConfig 增加 provenance 配置
|
19
|
+
|
20
|
+
- Updated dependencies [7e6fb5f]
|
21
|
+
- Updated dependencies [a7a7ad7]
|
22
|
+
- Updated dependencies [6dec7c2]
|
23
|
+
- Updated dependencies [c3216b5]
|
24
|
+
- @modern-js/utils@2.23.0
|
25
|
+
|
3
26
|
## 2.22.1
|
4
27
|
|
5
28
|
### Patch Changes
|
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
|
"jsnext:source": "./src/index.ts",
|
20
20
|
"types": "./dist/types/index.d.ts",
|
21
21
|
"main": "./dist/cjs/index.js",
|
@@ -33,20 +33,21 @@
|
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@swc/helpers": "0.5.1",
|
36
|
-
"@modern-js/utils": "2.
|
36
|
+
"@modern-js/utils": "2.23.1"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@types/jest": "^29",
|
40
40
|
"@types/node": "^14",
|
41
41
|
"typescript": "^5",
|
42
42
|
"jest": "^29",
|
43
|
-
"@scripts/build": "2.
|
44
|
-
"@scripts/jest-config": "2.
|
43
|
+
"@scripts/build": "2.23.1",
|
44
|
+
"@scripts/jest-config": "2.23.1"
|
45
45
|
},
|
46
46
|
"sideEffects": false,
|
47
47
|
"publishConfig": {
|
48
48
|
"registry": "https://registry.npmjs.org/",
|
49
|
-
"access": "public"
|
49
|
+
"access": "public",
|
50
|
+
"provenance": true
|
50
51
|
},
|
51
52
|
"scripts": {
|
52
53
|
"new": "modern-lib new",
|