@modern-js/plugin-proxy 1.0.0-rc.11 → 1.0.0-rc.15

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 +47 -0
  2. package/README.md +13 -21
  3. package/package.json +52 -50
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # @modern-js/plugin-proxy
2
2
 
3
+ ## 1.0.0-rc.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 224f7fe: fix server route match
8
+ - 30ac27c: feat: add generator package description
9
+ - 204c626: feat: initial
10
+ - Updated dependencies [224f7fe]
11
+ - Updated dependencies [30ac27c]
12
+ - Updated dependencies [204c626]
13
+ - @modern-js/core@1.0.0-rc.15
14
+ - @modern-js/utils@1.0.0-rc.15
15
+
16
+ ## 1.0.0-rc.14
17
+
18
+ ### Patch Changes
19
+
20
+ - 224f7fe: fix server route match
21
+ - 204c626: feat: initial
22
+ - Updated dependencies [224f7fe]
23
+ - Updated dependencies [204c626]
24
+ - @modern-js/core@1.0.0-rc.14
25
+ - @modern-js/utils@1.0.0-rc.14
26
+
27
+ ## 1.0.0-rc.13
28
+
29
+ ### Patch Changes
30
+
31
+ - 224f7fe: fix server route match
32
+ - 204c626: feat: initial
33
+ - Updated dependencies [224f7fe]
34
+ - Updated dependencies [204c626]
35
+ - @modern-js/core@1.0.0-rc.13
36
+ - @modern-js/utils@1.0.0-rc.13
37
+
38
+ ## 1.0.0-rc.12
39
+
40
+ ### Patch Changes
41
+
42
+ - 224f7fe: fix server route match
43
+ - 204c626: feat: initial
44
+ - Updated dependencies [224f7fe]
45
+ - Updated dependencies [204c626]
46
+ - @modern-js/core@1.0.0-rc.12
47
+ - @modern-js/plugin@1.0.0-rc.12
48
+ - @modern-js/utils@1.0.0-rc.12
49
+
3
50
  ## 1.0.0-rc.11
4
51
 
5
52
  ### Patch Changes
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,51 +1,53 @@
1
1
  {
2
- "name": "@modern-js/plugin-proxy",
3
- "version": "1.0.0-rc.11",
4
- "jsnext:source": "./src/index.ts",
5
- "types": "./dist/types/index.d.ts",
6
- "main": "./dist/js/node/index.js",
7
- "module": "./dist/js/treeshaking/index.js",
8
- "jsnext:modern": "./dist/js/modern/index.js",
9
- "exports": {
10
- ".": {
11
- "node": {
12
- "import": "./dist/js/modern/index.js",
13
- "require": "./dist/js/node/index.js"
14
- },
15
- "default": "./dist/js/treeshaking/index.js"
16
- },
17
- "./cli": "./dist/js/node/index.js"
18
- },
19
- "bin": {
20
- "modern": "./bin/modern.js"
21
- },
22
- "dependencies": {
23
- "@babel/runtime": "^7",
24
- "@modern-js/core": "^1.0.0-rc.11",
25
- "@modern-js/plugin": "^1.0.0-rc.11",
26
- "@modern-js/utils": "^1.0.0-rc.11",
27
- "whistle": "^2.7.18"
28
- },
29
- "devDependencies": {
30
- "@types/jest": "^26",
31
- "@types/node": "^14",
32
- "typescript": "^4",
33
- "@modern-js/plugin-testing": "^1.0.0-rc.11",
34
- "@modern-js/module-tools": "^1.0.0-rc.11"
35
- },
36
- "sideEffects": false,
37
- "modernConfig": {
38
- "output": {
39
- "packageMode": "node-js"
40
- }
41
- },
42
- "publishConfig": {
43
- "registry": "https://registry.npmjs.org/",
44
- "access": "public"
45
- },
46
- "scripts": {
47
- "new": "modern new",
48
- "build": "modern build",
49
- "test": "modern test --passWithNoTests"
50
- }
51
- }
2
+ "name": "@modern-js/plugin-proxy",
3
+ "version": "1.0.0-rc.15",
4
+ "jsnext:source": "./src/index.ts",
5
+ "types": "./dist/types/index.d.ts",
6
+ "main": "./dist/js/node/index.js",
7
+ "module": "./dist/js/treeshaking/index.js",
8
+ "jsnext:modern": "./dist/js/modern/index.js",
9
+ "exports": {
10
+ ".": {
11
+ "node": {
12
+ "import": "./dist/js/modern/index.js",
13
+ "require": "./dist/js/node/index.js"
14
+ },
15
+ "default": "./dist/js/treeshaking/index.js"
16
+ },
17
+ "./cli": "./dist/js/node/index.js"
18
+ },
19
+ "bin": {
20
+ "modern": "./bin/modern.js"
21
+ },
22
+ "dependencies": {
23
+ "@babel/runtime": "^7",
24
+ "@modern-js/utils": "^1.0.0-rc.15",
25
+ "whistle": "^2.7.18"
26
+ },
27
+ "devDependencies": {
28
+ "@types/jest": "^26",
29
+ "@types/node": "^14",
30
+ "typescript": "^4",
31
+ "@modern-js/core": "^1.0.0-rc.15",
32
+ "@modern-js/plugin-testing": "^1.0.0-rc.15",
33
+ "@modern-js/module-tools": "^1.0.0-rc.15"
34
+ },
35
+ "peerDependencies": {
36
+ "@modern-js/core": "^1.0.0-rc.15"
37
+ },
38
+ "sideEffects": false,
39
+ "modernConfig": {
40
+ "output": {
41
+ "packageMode": "node-js"
42
+ }
43
+ },
44
+ "publishConfig": {
45
+ "registry": "https://registry.npmjs.org/",
46
+ "access": "public"
47
+ },
48
+ "scripts": {
49
+ "new": "modern new",
50
+ "build": "modern build",
51
+ "test": "modern test --passWithNoTests"
52
+ }
53
+ }