@modern-js/types 1.1.2 → 1.1.3-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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @modern-js/types
2
2
 
3
+ ## 1.1.3-rc.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d73ff455: support multi process product
8
+ - d73ff455: support multi process product
9
+ - d73ff455: support multi process product
10
+ - d73ff455: support multi process product
11
+ - d73ff455: support multi process product
12
+ - @modern-js/plugin@1.1.2
13
+
3
14
  ## 1.1.2
4
15
 
5
16
  ### Patch Changes
package/cli/index.d.ts CHANGED
@@ -69,7 +69,9 @@ export interface IAppContext {
69
69
  internalDirectory: string;
70
70
  plugins: {
71
71
  cli?: any;
72
+ cliPath?: any;
72
73
  server?: any;
74
+ serverPath?: any;
73
75
  }[];
74
76
  entrypoints: Entrypoint[];
75
77
  serverRoutes: ServerRoute[];
@@ -102,8 +104,8 @@ export interface Hooks {
102
104
  unknown
103
105
  >;
104
106
  afterBuild: AsyncWorkflow<void, unknown>;
105
- beforeDeploy: AsyncWorkflow<void, unknown>;
106
- afterDeploy: AsyncWorkflow<void, unknown>;
107
+ beforeDeploy: AsyncWorkflow<Record<string, any>, unknown>;
108
+ afterDeploy: AsyncWorkflow<Record<string, any>, unknown>;
107
109
  modifyEntryExport: AsyncWaterfall<{
108
110
  entrypoint: Entrypoint;
109
111
  exportStatement: string;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.1.2",
14
+ "version": "1.1.3-rc.0",
15
15
  "main": "",
16
16
  "types": "./index.d.ts",
17
17
  "dependencies": {
@@ -27,12 +27,13 @@
27
27
  "@types/node": "^14",
28
28
  "@types/react": "^17",
29
29
  "@types/react-dom": "^17",
30
- "@modern-js/plugin-testing": "^1.1.0",
31
- "@modern-js/module-tools": "^1.1.0"
30
+ "@modern-js/plugin-testing": "^1.1.1",
31
+ "@modern-js/module-tools": "^1.1.1"
32
32
  },
33
33
  "sideEffects": false,
34
34
  "publishConfig": {
35
35
  "registry": "https://registry.npmjs.org/",
36
36
  "access": "public"
37
- }
37
+ },
38
+ "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"
38
39
  }