koatty 3.10.0 → 3.10.1

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [3.10.1](https://github.com/thinkkoa/koatty/compare/v3.10.0...v3.10.1) (2023-11-09)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * jsdoc ([993970e](https://github.com/thinkkoa/koatty/commit/993970e77dab26af1b81e7d2abfeac93263648ae))
11
+ * readme ([73078be](https://github.com/thinkkoa/koatty/commit/73078be36cc7a89767ded165dc91a7b3f11fd228))
12
+
5
13
  ## [3.10.0](https://github.com/thinkkoa/koatty/compare/v3.9.5...v3.10.0) (2023-11-08)
6
14
 
7
15
 
package/README.md CHANGED
@@ -145,6 +145,7 @@ if you use vscode , edit the `.vscode/launch.json` , like this:
145
145
  "sourceMaps": true,
146
146
  "cwd": "${workspaceRoot}",
147
147
  "protocol": "inspector",
148
+ "outputCapture": "std",
148
149
  "internalConsoleOptions": "neverOpen"
149
150
  }
150
151
  ]
package/dist/README.md CHANGED
@@ -145,6 +145,7 @@ if you use vscode , edit the `.vscode/launch.json` , like this:
145
145
  "sourceMaps": true,
146
146
  "cwd": "${workspaceRoot}",
147
147
  "protocol": "inspector",
148
+ "outputCapture": "std",
148
149
  "internalConsoleOptions": "neverOpen"
149
150
  }
150
151
  ]
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2023-11-08 15:28:11
3
+ * @Date: 2023-11-09 23:03:18
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
@@ -103,7 +103,7 @@ export declare class BaseService implements IService {
103
103
  * @description: bind App event hook func
104
104
  * example:
105
105
  * export function TestDecorator(): ClassDecorator {
106
- * return (target: any) => {
106
+ * return (target: Function) => {
107
107
  * BindEventHook(AppEvent.appBoot, (app: Koatty) => {
108
108
  * // todo
109
109
  * return Promise.resolve();
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2023-11-08 15:27:56
3
+ * @Date: 2023-11-09 23:03:05
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
@@ -647,7 +647,7 @@ class Loader {
647
647
  }
648
648
  }
649
649
 
650
- var version = "3.10.0";
650
+ var version = "3.10.1";
651
651
  var engines = {
652
652
  node: ">12.0.0"
653
653
  };
@@ -891,7 +891,7 @@ function ConfigurationScan(scanPath) {
891
891
  * @description: bind App event hook func
892
892
  * example:
893
893
  * export function TestDecorator(): ClassDecorator {
894
- * return (target: any) => {
894
+ * return (target: Function) => {
895
895
  * BindEventHook(AppEvent.appBoot, (app: Koatty) => {
896
896
  * // todo
897
897
  * return Promise.resolve();
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2023-11-08 15:27:56
3
+ * @Date: 2023-11-09 23:03:05
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
@@ -633,7 +633,7 @@ class Loader {
633
633
  }
634
634
  }
635
635
 
636
- var version = "3.10.0";
636
+ var version = "3.10.1";
637
637
  var engines = {
638
638
  node: ">12.0.0"
639
639
  };
@@ -877,7 +877,7 @@ function ConfigurationScan(scanPath) {
877
877
  * @description: bind App event hook func
878
878
  * example:
879
879
  * export function TestDecorator(): ClassDecorator {
880
- * return (target: any) => {
880
+ * return (target: Function) => {
881
881
  * BindEventHook(AppEvent.appBoot, (app: Koatty) => {
882
882
  * // todo
883
883
  * return Promise.resolve();
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "Koa2 + 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",
@@ -80,8 +80,8 @@
80
80
  "dependencies": {
81
81
  "koa": "^2.14.2",
82
82
  "koatty_config": "^1.1.6",
83
- "koatty_container": "^1.8.1",
84
- "koatty_core": "^1.8.1",
83
+ "koatty_container": "^1.8.2",
84
+ "koatty_core": "^1.8.2",
85
85
  "koatty_exception": "^1.2.8",
86
86
  "koatty_lib": "^1.3.4",
87
87
  "koatty_loader": "^1.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "Koa2 + 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",
@@ -80,8 +80,8 @@
80
80
  "dependencies": {
81
81
  "koa": "^2.14.2",
82
82
  "koatty_config": "^1.1.6",
83
- "koatty_container": "^1.8.1",
84
- "koatty_core": "^1.8.1",
83
+ "koatty_container": "^1.8.2",
84
+ "koatty_core": "^1.8.2",
85
85
  "koatty_exception": "^1.2.8",
86
86
  "koatty_lib": "^1.3.4",
87
87
  "koatty_loader": "^1.1.0",