@modern-js/runtime 1.1.1 → 1.1.2-rc.0

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 +19 -0
  2. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @modern-js/runtime
2
2
 
3
+ ## 1.1.2-rc.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d927bc83]
8
+ - Updated dependencies [d73ff455]
9
+ - Updated dependencies [9c1ab865]
10
+ - Updated dependencies [d73ff455]
11
+ - Updated dependencies [d73ff455]
12
+ - Updated dependencies [d73ff455]
13
+ - Updated dependencies [d73ff455]
14
+ - @modern-js/utils@1.1.4-rc.0
15
+ - @modern-js/core@1.1.4-rc.0
16
+ - @modern-js/plugin-router@1.1.2-rc.0
17
+ - @modern-js/plugin-ssr@1.1.2-rc.0
18
+ - @modern-js/plugin-state@1.1.3-rc.0
19
+ - @modern-js/runtime-core@1.1.2-rc.0
20
+ - @modern-js/bff-runtime@1.1.2-rc.0
21
+
3
22
  ## 1.1.1
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.1.1",
14
+ "version": "1.1.2-rc.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./type.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -83,12 +83,12 @@
83
83
  "dependencies": {
84
84
  "@babel/runtime": "^7",
85
85
  "@loadable/component": "^5.15.0",
86
- "@modern-js/bff-runtime": "^1.1.1",
87
- "@modern-js/plugin-router": "^1.1.1",
88
- "@modern-js/plugin-ssr": "^1.1.1",
89
- "@modern-js/plugin-state": "^1.1.2",
90
- "@modern-js/runtime-core": "^1.1.1",
91
- "@modern-js/utils": "^1.1.2",
86
+ "@modern-js/bff-runtime": "^1.1.2-rc.0",
87
+ "@modern-js/plugin-router": "^1.1.2-rc.0",
88
+ "@modern-js/plugin-ssr": "^1.1.2-rc.0",
89
+ "@modern-js/plugin-state": "^1.1.3-rc.0",
90
+ "@modern-js/runtime-core": "^1.1.2-rc.0",
91
+ "@modern-js/utils": "^1.1.4-rc.0",
92
92
  "@types/loadable__component": "^5.13.4",
93
93
  "@types/react-helmet": "^6.1.2",
94
94
  "@types/styled-components": "^5.1.13",
@@ -101,12 +101,12 @@
101
101
  "@types/react": "^17",
102
102
  "@types/react-dom": "^17",
103
103
  "typescript": "^4",
104
- "@modern-js/core": "^1.1.2",
105
- "@modern-js/plugin-testing": "^1.1.0",
106
- "@modern-js/module-tools": "^1.1.0"
104
+ "@modern-js/core": "^1.1.4-rc.0",
105
+ "@modern-js/plugin-testing": "^1.1.1",
106
+ "@modern-js/module-tools": "^1.1.1"
107
107
  },
108
108
  "peerDependencies": {
109
- "@modern-js/core": "^1.1.2"
109
+ "@modern-js/core": "^1.1.4-rc.0"
110
110
  },
111
111
  "sideEffects": false,
112
112
  "modernConfig": {},
@@ -118,5 +118,6 @@
118
118
  "new": "modern new",
119
119
  "build": "modern build",
120
120
  "test": "modern test --passWithNoTests"
121
- }
121
+ },
122
+ "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"
122
123
  }