koatty 3.9.1-3 → 3.9.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 +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/dist/package.json +1 -2
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
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.9.1](https://github.com/thinkkoa/koatty/compare/v3.9.1-3...v3.9.1) (2023-07-28)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* commit ([883db5f](https://github.com/thinkkoa/koatty/commit/883db5f6d11ace9b9f04f7b3b81452d5cbd76bfe))
|
11
|
+
|
5
12
|
### [3.9.1-3](https://github.com/thinkkoa/koatty/compare/v3.9.1-2...v3.9.1-3) (2023-07-27)
|
6
13
|
|
7
14
|
### [3.9.1-2](https://github.com/thinkkoa/koatty/compare/v3.9.1-1...v3.9.1-2) (2023-07-27)
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* @Author: richen
|
3
|
-
* @Date: 2023-07-
|
3
|
+
* @Date: 2023-07-28 20:40:03
|
4
4
|
* @License: BSD (3-Clause)
|
5
5
|
* @Copyright (c) - <richenlin(at)gmail.com>
|
6
6
|
* @HomePage: https://koatty.org/
|
@@ -613,7 +613,7 @@ class Loader {
|
|
613
613
|
}
|
614
614
|
}
|
615
615
|
|
616
|
-
var version = "3.9.1
|
616
|
+
var version = "3.9.1";
|
617
617
|
var engines = {
|
618
618
|
node: ">12.0.0"
|
619
619
|
};
|
@@ -816,7 +816,7 @@ function Bootstrap(bootFunc) {
|
|
816
816
|
function ExecBootStrap(bootFunc) {
|
817
817
|
return async (target) => {
|
818
818
|
if (!(target.prototype instanceof koatty_core.Koatty)) {
|
819
|
-
throw new Error(`class ${target.name} does not inherit from
|
819
|
+
throw new Error(`class ${target.name} does not inherit from Koatty`);
|
820
820
|
}
|
821
821
|
return await executeBootstrap(target, bootFunc, true);
|
822
822
|
};
|
package/dist/index.mjs
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* @Author: richen
|
3
|
-
* @Date: 2023-07-
|
3
|
+
* @Date: 2023-07-28 20:40:03
|
4
4
|
* @License: BSD (3-Clause)
|
5
5
|
* @Copyright (c) - <richenlin(at)gmail.com>
|
6
6
|
* @HomePage: https://koatty.org/
|
@@ -598,7 +598,7 @@ class Loader {
|
|
598
598
|
}
|
599
599
|
}
|
600
600
|
|
601
|
-
var version = "3.9.1
|
601
|
+
var version = "3.9.1";
|
602
602
|
var engines = {
|
603
603
|
node: ">12.0.0"
|
604
604
|
};
|
@@ -801,7 +801,7 @@ function Bootstrap(bootFunc) {
|
|
801
801
|
function ExecBootStrap(bootFunc) {
|
802
802
|
return async (target) => {
|
803
803
|
if (!(target.prototype instanceof Koatty)) {
|
804
|
-
throw new Error(`class ${target.name} does not inherit from
|
804
|
+
throw new Error(`class ${target.name} does not inherit from Koatty`);
|
805
805
|
}
|
806
806
|
return await executeBootstrap(target, bootFunc, true);
|
807
807
|
};
|
package/dist/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "koatty",
|
3
|
-
"version": "3.9.1
|
3
|
+
"version": "3.9.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",
|
@@ -82,7 +82,6 @@
|
|
82
82
|
"koatty_config": "^1.1.6",
|
83
83
|
"koatty_container": "^1.8.1",
|
84
84
|
"koatty_core": "^1.7.8",
|
85
|
-
"koatty_exception": "^1.2.8",
|
86
85
|
"koatty_lib": "^1.3.3",
|
87
86
|
"koatty_loader": "^1.1.0",
|
88
87
|
"koatty_logger": "^2.1.1",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "koatty",
|
3
|
-
"version": "3.9.1
|
3
|
+
"version": "3.9.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",
|
@@ -82,7 +82,6 @@
|
|
82
82
|
"koatty_config": "^1.1.6",
|
83
83
|
"koatty_container": "^1.8.1",
|
84
84
|
"koatty_core": "^1.7.8",
|
85
|
-
"koatty_exception": "^1.2.8",
|
86
85
|
"koatty_lib": "^1.3.3",
|
87
86
|
"koatty_loader": "^1.1.0",
|
88
87
|
"koatty_logger": "^2.1.1",
|