@modern-js/plugin-i18n 1.0.0-alpha.4 → 1.0.0-rc.12

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +65 -1
  2. package/README.md +13 -21
  3. package/package.json +7 -3
package/CHANGELOG.md CHANGED
@@ -1,6 +1,70 @@
1
1
  # @modern-js/plugin-i18n
2
2
 
3
- ## 1.0.0-alpha.3
3
+ ## 1.0.0-rc.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 224f7fe: fix server route match
8
+ - 204c626: feat: initial
9
+
10
+ ## 1.0.0-rc.11
11
+
12
+ ### Patch Changes
13
+
14
+ - 224f7fe: fix server route match
15
+ - 204c626: feat: initial
16
+
17
+ ## 1.0.0-rc.10
18
+
19
+ ### Patch Changes
20
+
21
+ - 224f7fe: fix server route match
22
+ - 204c626: feat: initial
23
+
24
+ ## 1.0.0-rc.9
25
+
26
+ ### Patch Changes
27
+
28
+ - 224f7fe: fix server route match
29
+ - 204c626: feat: initial
30
+
31
+ ## 1.0.0-rc.8
32
+
33
+ ### Patch Changes
34
+
35
+ - 224f7fe: fix server route match
36
+ - 204c626: feat: initial
37
+
38
+ ## 1.0.0-rc.7
39
+
40
+ ### Patch Changes
41
+
42
+ - 224f7fe: fix server route match
43
+ - 204c626: feat: initial
44
+
45
+ ## 1.0.0-rc.6
46
+
47
+ ### Patch Changes
48
+
49
+ - 224f7fe: fix server route match
50
+ - 204c626: feat: initial
51
+
52
+ ## 1.0.0-rc.5
53
+
54
+ ### Patch Changes
55
+
56
+ - 224f7fe: fix server route match
57
+ - 204c626: feat: initial
58
+
59
+ ## 1.0.0-rc.4
60
+
61
+ ### Patch Changes
62
+
63
+ - fix server route match
64
+ - 204c626: feat: initial
65
+
66
+ ## 1.0.0-rc.3
67
+
4
68
  ### Patch Changes
5
69
 
6
70
  - feat: initial
package/README.md CHANGED
@@ -3,30 +3,22 @@
3
3
  <a href="https://modernjs.dev" target="blank"><img src="https://lf3-static.bytednsdoc.com/obj/eden-cn/ylaelkeh7nuhfnuhf/modernjs-cover.png" width="300" alt="Modern.js Logo" /></a>
4
4
  </p>
5
5
 
6
- <p align="center">现代 Web 工程体系</p>
6
+ <p align="center">
7
+ 现代 Web 工程体系
8
+ <br/>
9
+ <a href="https://modernjs.dev" target="blank">
10
+ modernjs.dev
11
+ </a>
12
+ </p>
13
+
7
14
 
8
- ## 背景
15
+ ## 参考链接
9
16
  - [迈入现代 Web 开发](https://zhuanlan.zhihu.com/p/386607009)
10
17
  - [现代 Web 开发者问卷调查报告](https://zhuanlan.zhihu.com/p/403206195)
18
+ - [字节跳动是如何落地微前端的](https://mp.weixin.qq.com/s/L9wbfNG5fTXF5bx7dcgj4Q)
11
19
 
12
- ## 计划
13
-
14
- Modern.js 的 1.0.0.rc 版已经发到 npm,目前在做测试改进,README 文档之后统一提供(现阶段加入测试和开发,可以发 [issue](https://github.com/modern-js-dev/modern.js/issues) 留微信联系),完整的文档站计划在10月14日上线
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
20
+ ## 近期计划
31
21
 
22
+ Modern.js 的 1.0.0.rc 版已经发到 npm,目前在做测试改进和文档建设。
32
23
 
24
+ README、完整的文档站、介绍等,都计划在 10 月 27 日上线。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modern-js/plugin-i18n",
3
- "version": "1.0.0-alpha.4",
3
+ "version": "1.0.0-rc.12",
4
4
  "jsnext:source": "./src/index.ts",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "main": "./dist/js/node/index.js",
@@ -24,11 +24,15 @@
24
24
  "@types/lodash": "^4.14.126",
25
25
  "@types/node": "^14",
26
26
  "typescript": "^4",
27
- "@modern-js/plugin-testing": "^1.0.0-alpha.3",
28
- "@modern-js/module-tools": "^1.0.0-alpha.3"
27
+ "@modern-js/plugin-testing": "^1.0.0-rc.12",
28
+ "@modern-js/module-tools": "^1.0.0-rc.12"
29
29
  },
30
30
  "sideEffects": false,
31
31
  "modernConfig": {},
32
+ "publishConfig": {
33
+ "registry": "https://registry.npmjs.org/",
34
+ "access": "public"
35
+ },
32
36
  "scripts": {
33
37
  "new": "modern new",
34
38
  "build": "modern build",