koatty 4.1.5 → 4.1.7
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +22 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/package.json +11 -11
- package/package.json +11 -11
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> koatty@4.1.
|
|
3
|
+
> koatty@4.1.7 build /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty
|
|
4
4
|
> npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
> koatty@4.1.
|
|
7
|
+
> koatty@4.1.7 build:js
|
|
8
8
|
> npx rollup --bundleConfigAsCjs -c .rollup.config.js
|
|
9
9
|
|
|
10
10
|
[1G[0K[1G[0K[36m
|
|
11
11
|
[1m./src/index.ts[22m → [1m./dist/index.js, ./dist/index.mjs[22m...[39m
|
|
12
|
-
[32mcreated [1m./dist/index.js, ./dist/index.mjs[22m in [
|
|
12
|
+
[32mcreated [1m./dist/index.js, ./dist/index.mjs[22m in [1m996ms[22m[39m
|
|
13
13
|
[1G[0K⠙[1G[0K[1G[0K⠙[1G[0K
|
|
14
|
-
> koatty@4.1.
|
|
14
|
+
> koatty@4.1.7 build:dts
|
|
15
15
|
> bash scripts/build-dts.sh
|
|
16
16
|
|
|
17
17
|
[1G[0K🔨 Building type declarations for koatty...
|
|
@@ -63,7 +63,7 @@ Analysis will use the bundled TypeScript version 5.8.2
|
|
|
63
63
|
API Extractor completed successfully
|
|
64
64
|
[1G[0K⠙[1G[0K✅ Type declarations built successfully
|
|
65
65
|
[1G[0K⠙[1G[0K
|
|
66
|
-
> koatty@4.1.
|
|
66
|
+
> koatty@4.1.7 build:doc
|
|
67
67
|
> npx api-documenter markdown --input temp --output docs/api
|
|
68
68
|
|
|
69
69
|
[1G[0K[1G[0K
|
|
@@ -74,7 +74,7 @@ Reading koatty.api.json
|
|
|
74
74
|
Deleting old output from docs/api
|
|
75
75
|
Writing koatty package
|
|
76
76
|
[1G[0K⠙[1G[0K[1G[0K⠙[1G[0K
|
|
77
|
-
> koatty@4.1.
|
|
77
|
+
> koatty@4.1.7 build:cp
|
|
78
78
|
> node scripts/copyFiles && node scripts/postBuild
|
|
79
79
|
|
|
80
80
|
[1G[0KCopied package.json to dist/
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.1.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- koatty_loader@1.1.6
|
|
9
|
+
- koatty_config@1.2.14
|
|
10
|
+
|
|
11
|
+
## 4.1.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- koatty_logger@2.8.2
|
|
17
|
+
- koatty_config@1.2.13
|
|
18
|
+
- koatty_container@2.0.4
|
|
19
|
+
- koatty_core@2.1.4
|
|
20
|
+
- koatty_exception@2.1.4
|
|
21
|
+
- koatty_router@2.1.4
|
|
22
|
+
- koatty_serve@3.1.5
|
|
23
|
+
- koatty_trace@2.1.5
|
|
24
|
+
|
|
3
25
|
## 4.1.5
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koatty",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "Koa + Typescript = koatty. Use Typescript's decorator implement auto injection.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"husky": "^4.x.x",
|
|
94
94
|
"jest": "^29.x.x",
|
|
95
95
|
"jest-html-reporters": "^3.x.x",
|
|
96
|
-
"koatty_validation": "^2.0.
|
|
96
|
+
"koatty_validation": "^2.0.4",
|
|
97
97
|
"reflect-metadata": "^0.x.x",
|
|
98
98
|
"rollup": "^4.x.x",
|
|
99
99
|
"rollup-plugin-delete": "^2.x.x",
|
|
@@ -106,16 +106,16 @@
|
|
|
106
106
|
},
|
|
107
107
|
"dependencies": {
|
|
108
108
|
"koa": "^3.1.1",
|
|
109
|
-
"koatty_config": "^1.2.
|
|
110
|
-
"koatty_container": "^2.0.
|
|
111
|
-
"koatty_core": "^2.1.
|
|
112
|
-
"koatty_exception": "^2.1.
|
|
109
|
+
"koatty_config": "^1.2.14",
|
|
110
|
+
"koatty_container": "^2.0.4",
|
|
111
|
+
"koatty_core": "^2.1.4",
|
|
112
|
+
"koatty_exception": "^2.1.4",
|
|
113
113
|
"koatty_lib": "^1.4.6",
|
|
114
|
-
"koatty_loader": "^1.1.
|
|
115
|
-
"koatty_logger": "^2.
|
|
116
|
-
"koatty_router": "^2.1.
|
|
117
|
-
"koatty_serve": "^3.1.
|
|
118
|
-
"koatty_trace": "^2.1.
|
|
114
|
+
"koatty_loader": "^1.1.6",
|
|
115
|
+
"koatty_logger": "^2.8.2",
|
|
116
|
+
"koatty_router": "^2.1.4",
|
|
117
|
+
"koatty_serve": "^3.1.5",
|
|
118
|
+
"koatty_trace": "^2.1.5",
|
|
119
119
|
"ts-morph": "^27.0.2"
|
|
120
120
|
}
|
|
121
121
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koatty",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "Koa + Typescript = koatty. Use Typescript's decorator implement auto injection.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -92,21 +92,21 @@
|
|
|
92
92
|
"ts-node": "^10.x.x",
|
|
93
93
|
"tslib": "^2.x.x",
|
|
94
94
|
"typescript": "^5.x.x",
|
|
95
|
-
"koatty_validation": "2.0.
|
|
95
|
+
"koatty_validation": "2.0.4"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"koa": "^3.1.1",
|
|
99
99
|
"ts-morph": "^27.0.2",
|
|
100
|
-
"koatty_config": "1.2.
|
|
101
|
-
"koatty_container": "2.0.3",
|
|
102
|
-
"koatty_core": "2.1.3",
|
|
103
|
-
"koatty_exception": "2.1.3",
|
|
100
|
+
"koatty_config": "1.2.14",
|
|
104
101
|
"koatty_lib": "1.4.6",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
102
|
+
"koatty_core": "2.1.4",
|
|
103
|
+
"koatty_loader": "1.1.6",
|
|
104
|
+
"koatty_container": "2.0.4",
|
|
105
|
+
"koatty_exception": "2.1.4",
|
|
106
|
+
"koatty_logger": "2.8.2",
|
|
107
|
+
"koatty_serve": "3.1.5",
|
|
108
|
+
"koatty_trace": "2.1.5",
|
|
109
|
+
"koatty_router": "2.1.4"
|
|
110
110
|
},
|
|
111
111
|
"scripts": {
|
|
112
112
|
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
|