Skip to content

Commit df7bb7b

Browse files
committed
FIXUP
1 parent 8e29b67 commit df7bb7b

59 files changed

Lines changed: 2 additions & 1051 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/cluster/tsdown.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { defineConfig, type UserConfig } from 'tsdown';
33
const config: UserConfig = defineConfig({
44
entry: {
55
index: 'src/index.ts',
6+
agent_worker: 'src/agent_worker.ts',
7+
app_worker: 'src/app_worker.ts',
68
},
79
});
810

packages/cookies/package.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,12 @@
1919
"types": "./dist/index.d.ts",
2020
"exports": {
2121
".": "./src/index.ts",
22-
"./cookie": "./src/cookie.ts",
23-
"./cookies": "./src/cookies.ts",
24-
"./error": "./src/error.ts",
25-
"./keygrip": "./src/keygrip.ts",
2622
"./package.json": "./package.json"
2723
},
2824
"publishConfig": {
2925
"access": "public",
3026
"exports": {
3127
".": "./dist/index.js",
32-
"./cookie": "./dist/cookie.js",
33-
"./cookies": "./dist/cookies.js",
34-
"./error": "./dist/error.js",
35-
"./keygrip": "./dist/keygrip.js",
3628
"./package.json": "./package.json"
3729
}
3830
},

packages/core/package.json

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,34 +26,12 @@
2626
"types": "./dist/index.d.ts",
2727
"exports": {
2828
".": "./src/index.ts",
29-
"./base_context_class": "./src/base_context_class.ts",
30-
"./egg": "./src/egg.ts",
31-
"./lifecycle": "./src/lifecycle.ts",
32-
"./loader/context_loader": "./src/loader/context_loader.ts",
33-
"./loader/egg_loader": "./src/loader/egg_loader.ts",
34-
"./loader/file_loader": "./src/loader/file_loader.ts",
35-
"./singleton": "./src/singleton.ts",
36-
"./types": "./src/types.ts",
37-
"./utils": "./src/utils/index.ts",
38-
"./utils/sequencify": "./src/utils/sequencify.ts",
39-
"./utils/timing": "./src/utils/timing.ts",
4029
"./package.json": "./package.json"
4130
},
4231
"publishConfig": {
4332
"access": "public",
4433
"exports": {
4534
".": "./dist/index.js",
46-
"./base_context_class": "./dist/base_context_class.js",
47-
"./egg": "./dist/egg.js",
48-
"./lifecycle": "./dist/lifecycle.js",
49-
"./loader/context_loader": "./dist/loader/context_loader.js",
50-
"./loader/egg_loader": "./dist/loader/egg_loader.js",
51-
"./loader/file_loader": "./dist/loader/file_loader.js",
52-
"./singleton": "./dist/singleton.js",
53-
"./types": "./dist/types.js",
54-
"./utils": "./dist/utils/index.js",
55-
"./utils/sequencify": "./dist/utils/sequencify.js",
56-
"./utils/timing": "./dist/utils/timing.js",
5735
"./package.json": "./package.json"
5836
}
5937
},

packages/errors/package.json

Lines changed: 0 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -22,118 +22,12 @@
2222
"types": "./dist/index.d.ts",
2323
"exports": {
2424
".": "./src/index.ts",
25-
"./base": "./src/base.ts",
26-
"./base_error": "./src/base_error.ts",
27-
"./base_exception": "./src/base_exception.ts",
28-
"./error": "./src/error.ts",
29-
"./error_options": "./src/error_options.ts",
30-
"./error_type": "./src/error_type.ts",
31-
"./exception": "./src/exception.ts",
32-
"./framework/formatter": "./src/framework/formatter.ts",
33-
"./framework/framework_base_error": "./src/framework/framework_base_error.ts",
34-
"./http/400": "./src/http/400.ts",
35-
"./http/401": "./src/http/401.ts",
36-
"./http/402": "./src/http/402.ts",
37-
"./http/403": "./src/http/403.ts",
38-
"./http/404": "./src/http/404.ts",
39-
"./http/405": "./src/http/405.ts",
40-
"./http/406": "./src/http/406.ts",
41-
"./http/407": "./src/http/407.ts",
42-
"./http/408": "./src/http/408.ts",
43-
"./http/409": "./src/http/409.ts",
44-
"./http/410": "./src/http/410.ts",
45-
"./http/411": "./src/http/411.ts",
46-
"./http/412": "./src/http/412.ts",
47-
"./http/413": "./src/http/413.ts",
48-
"./http/414": "./src/http/414.ts",
49-
"./http/415": "./src/http/415.ts",
50-
"./http/416": "./src/http/416.ts",
51-
"./http/417": "./src/http/417.ts",
52-
"./http/418": "./src/http/418.ts",
53-
"./http/421": "./src/http/421.ts",
54-
"./http/422": "./src/http/422.ts",
55-
"./http/423": "./src/http/423.ts",
56-
"./http/424": "./src/http/424.ts",
57-
"./http/425": "./src/http/425.ts",
58-
"./http/426": "./src/http/426.ts",
59-
"./http/428": "./src/http/428.ts",
60-
"./http/429": "./src/http/429.ts",
61-
"./http/431": "./src/http/431.ts",
62-
"./http/451": "./src/http/451.ts",
63-
"./http/500": "./src/http/500.ts",
64-
"./http/501": "./src/http/501.ts",
65-
"./http/502": "./src/http/502.ts",
66-
"./http/503": "./src/http/503.ts",
67-
"./http/504": "./src/http/504.ts",
68-
"./http/505": "./src/http/505.ts",
69-
"./http/506": "./src/http/506.ts",
70-
"./http/507": "./src/http/507.ts",
71-
"./http/508": "./src/http/508.ts",
72-
"./http/509": "./src/http/509.ts",
73-
"./http/510": "./src/http/510.ts",
74-
"./http/511": "./src/http/511.ts",
75-
"./http/http_error": "./src/http/http_error.ts",
76-
"./http/http_error_options": "./src/http/http_error_options.ts",
77-
"./http/http_header": "./src/http/http_header.ts",
7825
"./package.json": "./package.json"
7926
},
8027
"publishConfig": {
8128
"access": "public",
8229
"exports": {
8330
".": "./dist/index.js",
84-
"./base": "./dist/base.js",
85-
"./base_error": "./dist/base_error.js",
86-
"./base_exception": "./dist/base_exception.js",
87-
"./error": "./dist/error.js",
88-
"./error_options": "./dist/error_options.js",
89-
"./error_type": "./dist/error_type.js",
90-
"./exception": "./dist/exception.js",
91-
"./framework/formatter": "./dist/framework/formatter.js",
92-
"./framework/framework_base_error": "./dist/framework/framework_base_error.js",
93-
"./http/400": "./dist/http/400.js",
94-
"./http/401": "./dist/http/401.js",
95-
"./http/402": "./dist/http/402.js",
96-
"./http/403": "./dist/http/403.js",
97-
"./http/404": "./dist/http/404.js",
98-
"./http/405": "./dist/http/405.js",
99-
"./http/406": "./dist/http/406.js",
100-
"./http/407": "./dist/http/407.js",
101-
"./http/408": "./dist/http/408.js",
102-
"./http/409": "./dist/http/409.js",
103-
"./http/410": "./dist/http/410.js",
104-
"./http/411": "./dist/http/411.js",
105-
"./http/412": "./dist/http/412.js",
106-
"./http/413": "./dist/http/413.js",
107-
"./http/414": "./dist/http/414.js",
108-
"./http/415": "./dist/http/415.js",
109-
"./http/416": "./dist/http/416.js",
110-
"./http/417": "./dist/http/417.js",
111-
"./http/418": "./dist/http/418.js",
112-
"./http/421": "./dist/http/421.js",
113-
"./http/422": "./dist/http/422.js",
114-
"./http/423": "./dist/http/423.js",
115-
"./http/424": "./dist/http/424.js",
116-
"./http/425": "./dist/http/425.js",
117-
"./http/426": "./dist/http/426.js",
118-
"./http/428": "./dist/http/428.js",
119-
"./http/429": "./dist/http/429.js",
120-
"./http/431": "./dist/http/431.js",
121-
"./http/451": "./dist/http/451.js",
122-
"./http/500": "./dist/http/500.js",
123-
"./http/501": "./dist/http/501.js",
124-
"./http/502": "./dist/http/502.js",
125-
"./http/503": "./dist/http/503.js",
126-
"./http/504": "./dist/http/504.js",
127-
"./http/505": "./dist/http/505.js",
128-
"./http/506": "./dist/http/506.js",
129-
"./http/507": "./dist/http/507.js",
130-
"./http/508": "./dist/http/508.js",
131-
"./http/509": "./dist/http/509.js",
132-
"./http/510": "./dist/http/510.js",
133-
"./http/511": "./dist/http/511.js",
134-
"./http/http_error": "./dist/http/http_error.js",
135-
"./http/http_error_options": "./dist/http/http_error_options.js",
136-
"./http/http_header": "./dist/http/http_header.js",
13731
"./package.json": "./package.json"
13832
}
13933
},

packages/koa/package.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,12 @@
2727
"types": "./dist/index.d.ts",
2828
"exports": {
2929
".": "./src/index.ts",
30-
"./application": "./src/application.ts",
31-
"./context": "./src/context.ts",
32-
"./request": "./src/request.ts",
33-
"./response": "./src/response.ts",
34-
"./types": "./src/types.ts",
3530
"./package.json": "./package.json"
3631
},
3732
"publishConfig": {
3833
"access": "public",
3934
"exports": {
4035
".": "./dist/index.js",
41-
"./application": "./dist/application.js",
42-
"./context": "./dist/context.js",
43-
"./request": "./dist/request.js",
44-
"./response": "./dist/response.js",
45-
"./types": "./dist/types.js",
4636
"./package.json": "./package.json"
4737
}
4838
},

packages/router/package.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,12 @@
2828
"types": "./dist/index.d.ts",
2929
"exports": {
3030
".": "./src/index.ts",
31-
"./EggRouter": "./src/EggRouter.ts",
32-
"./Layer": "./src/Layer.ts",
33-
"./Router": "./src/Router.ts",
34-
"./types": "./src/types.ts",
3531
"./package.json": "./package.json"
3632
},
3733
"publishConfig": {
3834
"access": "public",
3935
"exports": {
4036
".": "./dist/index.js",
41-
"./EggRouter": "./dist/EggRouter.js",
42-
"./Layer": "./dist/Layer.js",
43-
"./Router": "./dist/Router.js",
44-
"./types": "./dist/types.js",
4537
"./package.json": "./package.json"
4638
}
4739
},

packages/supertest/package.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,12 @@
2828
"types": "./dist/index.d.ts",
2929
"exports": {
3030
".": "./src/index.ts",
31-
"./agent": "./src/agent.ts",
32-
"./error/AssertError": "./src/error/AssertError.ts",
33-
"./request": "./src/request.ts",
34-
"./test": "./src/test.ts",
35-
"./types": "./src/types.ts",
3631
"./package.json": "./package.json"
3732
},
3833
"publishConfig": {
3934
"access": "public",
4035
"exports": {
4136
".": "./dist/index.js",
42-
"./agent": "./dist/agent.js",
43-
"./error/AssertError": "./dist/error/AssertError.js",
44-
"./request": "./dist/request.js",
45-
"./test": "./dist/test.js",
46-
"./types": "./dist/types.js",
4737
"./package.json": "./package.json"
4838
}
4939
},

packages/utils/package.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,12 @@
2323
"types": "./dist/index.d.ts",
2424
"exports": {
2525
".": "./src/index.ts",
26-
"./deprecated": "./src/deprecated.ts",
27-
"./error": "./src/error/index.ts",
28-
"./error/ImportResolveError": "./src/error/ImportResolveError.ts",
29-
"./framework": "./src/framework.ts",
30-
"./import": "./src/import.ts",
31-
"./plugin": "./src/plugin.ts",
32-
"./utils": "./src/utils.ts",
3326
"./package.json": "./package.json"
3427
},
3528
"publishConfig": {
3629
"access": "public",
3730
"exports": {
3831
".": "./dist/index.js",
39-
"./deprecated": "./dist/deprecated.js",
40-
"./error": "./dist/error/index.js",
41-
"./error/ImportResolveError": "./dist/error/ImportResolveError.js",
42-
"./framework": "./dist/framework.js",
43-
"./import": "./dist/import.js",
44-
"./plugin": "./dist/plugin.js",
45-
"./utils": "./dist/utils.js",
4632
"./package.json": "./package.json"
4733
}
4834
},

plugins/development/tsdown.config.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

plugins/i18n/tsdown.config.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)