@modern-js/types 1.1.1 → 1.1.4
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 +25 -0
- package/cli/index.d.ts +5 -16
- package/package.json +6 -5
- package/server/context.d.ts +2 -2
- package/server/index.d.ts +1 -0
- package/server/route.d.ts +19 -0
- package/server/util.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @modern-js/types
|
|
2
2
|
|
|
3
|
+
## 1.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e04914ce: add route types, fix metrics types
|
|
8
|
+
- e04914ce: add route types, fix metrics types
|
|
9
|
+
|
|
10
|
+
## 1.1.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- d73ff455: support multi process product
|
|
15
|
+
- d73ff455: support multi process product
|
|
16
|
+
- d73ff455: support multi process product
|
|
17
|
+
- d73ff455: support multi process product
|
|
18
|
+
- d73ff455: support multi process product
|
|
19
|
+
|
|
20
|
+
## 1.1.2
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 0fa83663: support more .env files
|
|
25
|
+
- Updated dependencies [0fa83663]
|
|
26
|
+
- @modern-js/plugin@1.1.2
|
|
27
|
+
|
|
3
28
|
## 1.1.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/cli/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AsyncWaterfall, AsyncWorkflow } from '@modern-js/plugin';
|
|
2
2
|
import { Compiler, MultiCompiler, Configuration } from 'webpack';
|
|
3
|
+
import { ServerRoute } from '../server';
|
|
3
4
|
|
|
4
5
|
export type { Compiler, MultiCompiler, Configuration };
|
|
5
6
|
|
|
@@ -17,20 +18,6 @@ export interface Entrypoint {
|
|
|
17
18
|
};
|
|
18
19
|
}
|
|
19
20
|
|
|
20
|
-
/**
|
|
21
|
-
* server route
|
|
22
|
-
*/
|
|
23
|
-
export interface ServerRoute {
|
|
24
|
-
urlPath: string;
|
|
25
|
-
entryName?: string;
|
|
26
|
-
entryPath: string;
|
|
27
|
-
isSPA: boolean;
|
|
28
|
-
isSSR: boolean;
|
|
29
|
-
isApi?: boolean;
|
|
30
|
-
bundle?: string;
|
|
31
|
-
enableModernMode?: boolean;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
21
|
/**
|
|
35
22
|
* file system routes.
|
|
36
23
|
*/
|
|
@@ -69,7 +56,9 @@ export interface IAppContext {
|
|
|
69
56
|
internalDirectory: string;
|
|
70
57
|
plugins: {
|
|
71
58
|
cli?: any;
|
|
59
|
+
cliPath?: any;
|
|
72
60
|
server?: any;
|
|
61
|
+
serverPath?: any;
|
|
73
62
|
}[];
|
|
74
63
|
entrypoints: Entrypoint[];
|
|
75
64
|
serverRoutes: ServerRoute[];
|
|
@@ -102,8 +91,8 @@ export interface Hooks {
|
|
|
102
91
|
unknown
|
|
103
92
|
>;
|
|
104
93
|
afterBuild: AsyncWorkflow<void, unknown>;
|
|
105
|
-
beforeDeploy: AsyncWorkflow<
|
|
106
|
-
afterDeploy: AsyncWorkflow<
|
|
94
|
+
beforeDeploy: AsyncWorkflow<Record<string, any>, unknown>;
|
|
95
|
+
afterDeploy: AsyncWorkflow<Record<string, any>, unknown>;
|
|
107
96
|
modifyEntryExport: AsyncWaterfall<{
|
|
108
97
|
entrypoint: Entrypoint;
|
|
109
98
|
exportStatement: string;
|
package/package.json
CHANGED
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.1.
|
|
14
|
+
"version": "1.1.4",
|
|
15
15
|
"main": "",
|
|
16
16
|
"types": "./index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@modern-js/plugin": "^1.1.
|
|
18
|
+
"@modern-js/plugin": "^1.1.2",
|
|
19
19
|
"webpack": "^5.54.0"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
@@ -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.
|
|
31
|
-
"@modern-js/module-tools": "^1.1.
|
|
30
|
+
"@modern-js/plugin-testing": "^1.1.1",
|
|
31
|
+
"@modern-js/module-tools": "^1.1.2"
|
|
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
|
}
|
package/server/context.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IncomingMessage, ServerResponse, IncomingHttpHeaders } from 'http';
|
|
2
2
|
import { URL } from 'url';
|
|
3
3
|
import qs from 'querystring';
|
|
4
|
-
import {
|
|
4
|
+
import { Metrics, Logger } from './util';
|
|
5
5
|
|
|
6
6
|
export interface ModernServerContext {
|
|
7
7
|
req: IncomingMessage;
|
|
@@ -12,7 +12,7 @@ export interface ModernServerContext {
|
|
|
12
12
|
|
|
13
13
|
logger: Logger;
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
metrics?: Metrics;
|
|
16
16
|
|
|
17
17
|
setParams: (params: Record<string, string>) => void;
|
|
18
18
|
|
package/server/index.d.ts
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface ServerRoute {
|
|
2
|
+
// modern js web entry name
|
|
3
|
+
entryName?: string;
|
|
4
|
+
// the url path for request match
|
|
5
|
+
urlPath: string;
|
|
6
|
+
// the default resource file to response to route
|
|
7
|
+
entryPath: string;
|
|
8
|
+
// if route is spa page
|
|
9
|
+
isSPA?: boolean;
|
|
10
|
+
// if route is ssr page
|
|
11
|
+
isSSR?: boolean;
|
|
12
|
+
// if route is api service
|
|
13
|
+
isApi?: boolean;
|
|
14
|
+
// ssr js bundle for ssr page
|
|
15
|
+
bundle?: string;
|
|
16
|
+
// if route has modern product
|
|
17
|
+
enableModernMode?: boolean;
|
|
18
|
+
// specialHeader?: SpecialHeader[];
|
|
19
|
+
}
|
package/server/util.d.ts
CHANGED