@modern-js/types 1.0.0 → 1.1.2
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 +27 -0
- package/README.md +1 -4
- package/cli/index.d.ts +2 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @modern-js/types
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0fa83663: support more .env files
|
|
8
|
+
- Updated dependencies [0fa83663]
|
|
9
|
+
- @modern-js/plugin@1.1.2
|
|
10
|
+
|
|
11
|
+
## 1.1.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- c0fc0700: feat: support deploy plugin
|
|
16
|
+
- Updated dependencies [6ffd1a50]
|
|
17
|
+
- @modern-js/plugin@1.1.1
|
|
18
|
+
|
|
19
|
+
## 1.1.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 96119db2: Relese v1.1.0
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [96119db2]
|
|
28
|
+
- @modern-js/plugin@1.1.0
|
|
29
|
+
|
|
3
30
|
## 1.0.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -17,10 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
> The doc site ([modernjs.dev](https://modernjs.dev)) and articles are only available in Chinese for now, we are planning to add English versions soon.
|
|
19
19
|
|
|
20
|
-
-
|
|
21
|
-
- [迈入现代 Web 开发](https://zhuanlan.zhihu.com/p/386607009)
|
|
22
|
-
- [现代 Web 开发者问卷调查报告](https://zhuanlan.zhihu.com/p/403206195)
|
|
23
|
-
- [字节跳动是如何落地微前端的](https://mp.weixin.qq.com/s/L9wbfNG5fTXF5bx7dcgj4Q)
|
|
20
|
+
- [Modern.js: Hello, World!](https://zhuanlan.zhihu.com/p/426707646)
|
|
24
21
|
|
|
25
22
|
## Getting Started
|
|
26
23
|
|
package/cli/index.d.ts
CHANGED
|
@@ -102,6 +102,8 @@ export interface Hooks {
|
|
|
102
102
|
unknown
|
|
103
103
|
>;
|
|
104
104
|
afterBuild: AsyncWorkflow<void, unknown>;
|
|
105
|
+
beforeDeploy: AsyncWorkflow<void, unknown>;
|
|
106
|
+
afterDeploy: AsyncWorkflow<void, unknown>;
|
|
105
107
|
modifyEntryExport: AsyncWaterfall<{
|
|
106
108
|
entrypoint: Entrypoint;
|
|
107
109
|
exportStatement: string;
|
package/package.json
CHANGED
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.
|
|
14
|
+
"version": "1.1.2",
|
|
15
15
|
"main": "",
|
|
16
16
|
"types": "./index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@modern-js/plugin": "^1.
|
|
18
|
+
"@modern-js/plugin": "^1.1.2",
|
|
19
19
|
"webpack": "^5.54.0"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@types/node": "^14",
|
|
28
28
|
"@types/react": "^17",
|
|
29
29
|
"@types/react-dom": "^17",
|
|
30
|
-
"@modern-js/plugin-testing": "^1.
|
|
31
|
-
"@modern-js/module-tools": "^1.
|
|
30
|
+
"@modern-js/plugin-testing": "^1.1.0",
|
|
31
|
+
"@modern-js/module-tools": "^1.1.0"
|
|
32
32
|
},
|
|
33
33
|
"sideEffects": false,
|
|
34
34
|
"publishConfig": {
|