@modern-js/server 0.0.0-canary-20211221041133 → 0.0.0-runtime-20211121141552

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 (2) hide show
  1. package/CHANGELOG.md +9 -4
  2. package/package.json +12 -13
package/CHANGELOG.md CHANGED
@@ -1,16 +1,21 @@
1
1
  # @modern-js/server
2
2
 
3
- ## 0.0.0-canary-20211221041133
3
+ ## 0.0.0-runtime-20211121141552
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 8698465e: fix: dependence version
7
8
  - e04914ce: add route types, fix metrics types
8
9
  - e04914ce: add route types, fix metrics types
9
- - Updated dependencies [faf12bd3]
10
+ - Updated dependencies [8698465e]
10
11
  - Updated dependencies [e04914ce]
11
12
  - Updated dependencies [e04914ce]
12
- - @modern-js/core@0.0.0-canary-20211221041133
13
- - @modern-js/server-plugin@0.0.0-canary-20211221041133
13
+ - @modern-js/core@0.0.0-runtime-20211121141552
14
+ - @modern-js/bff-utils@0.0.0-runtime-20211121141552
15
+ - @modern-js/hmr-client@0.0.0-runtime-20211121141552
16
+ - @modern-js/server-plugin@0.0.0-runtime-20211121141552
17
+ - @modern-js/server-utils@0.0.0-runtime-20211121141552
18
+ - @modern-js/utils@0.0.0-runtime-20211121141552
14
19
 
15
20
  ## 1.1.4
16
21
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "0.0.0-canary-20211221041133",
14
+ "version": "0.0.0-runtime-20211121141552",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -33,12 +33,12 @@
33
33
  "@babel/preset-typescript": "^7.15.0",
34
34
  "@babel/register": "^7.15.3",
35
35
  "@babel/runtime": "^7",
36
- "@modern-js/core": "^0.0.0-canary-20211221041133",
37
- "@modern-js/hmr-client": "^1.1.1",
38
- "@modern-js/server-plugin": "^0.0.0-canary-20211221041133",
39
- "@modern-js/server-utils": "^1.1.2",
40
- "@modern-js/bff-utils": "^1.1.1",
41
- "@modern-js/utils": "^1.1.4",
36
+ "@modern-js/core": "^0.0.0-runtime-20211121141552",
37
+ "@modern-js/hmr-client": "^0.0.0-runtime-20211121141552",
38
+ "@modern-js/server-plugin": "^0.0.0-runtime-20211121141552",
39
+ "@modern-js/server-utils": "^0.0.0-runtime-20211121141552",
40
+ "@modern-js/bff-utils": "^0.0.0-runtime-20211121141552",
41
+ "@modern-js/utils": "^0.0.0-runtime-20211121141552",
42
42
  "axios": "^0.21.4",
43
43
  "babel-plugin-module-resolver": "^4.1.0",
44
44
  "chokidar": "^3.5.2",
@@ -61,9 +61,9 @@
61
61
  "ws": "^8.2.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@modern-js/module-tools": "^1.1.2",
65
- "@modern-js/plugin-testing": "^0.0.0-canary-20211221041133",
66
- "@modern-js/types": "^0.0.0-canary-20211221041133",
64
+ "@modern-js/module-tools": "^0.0.0-runtime-20211121141552",
65
+ "@modern-js/plugin-testing": "^0.0.0-runtime-20211121141552",
66
+ "@modern-js/types": "^0.0.0-runtime-20211121141552",
67
67
  "@types/jest": "^26",
68
68
  "@types/lru-cache": "^5.1.1",
69
69
  "@types/mime-types": "^2.1.0",
@@ -77,7 +77,7 @@
77
77
  "@types/ua-parser-js": "^0.7.36",
78
78
  "@types/webpack-dev-middleware": "^5.0.2",
79
79
  "@types/ws": "^7.4.7",
80
- "typescript": "^4",
80
+ "typescript": "^4.4.4",
81
81
  "webpack": "^5.54.0"
82
82
  },
83
83
  "peerDependencies": {
@@ -98,6 +98,5 @@
98
98
  "build": "modern build",
99
99
  "dev": "modern build --watch",
100
100
  "test": "modern test --passWithNoTests"
101
- },
102
- "readme": "\n<p align=\"center\">\n <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>\n</p>\n<p align=\"center\">\n现代 Web 工程体系\n <br/>\n <a href=\"https://modernjs.dev\" target=\"blank\">\n modernjs.dev\n </a>\n</p>\n<p align=\"center\">\n The meta-framework suite designed from scratch for frontend-focused modern web development\n</p>\n\n# Introduction\n\n> 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.\n\n- [Modern.js: Hello, World!](https://zhuanlan.zhihu.com/p/426707646)\n\n## Getting Started\n\n- [Quick Start](https://modernjs.dev/docs/start)\n- [Guides](https://modernjs.dev/docs/guides)\n- [API References](https://modernjs.dev/docs/apis)\n\n## Contributing\n\n- [Contributing Guide](https://github.com/modern-js-dev/modern.js/blob/main/CONTRIBUTING.md)\n"
101
+ }
103
102
  }