koatty_core
Advanced tools
Comparing version 1.6.8 to 1.6.9
@@ -5,2 +5,10 @@ # Changelog | ||
### [1.6.9](https://github.com/koatty/koatty_core/compare/v1.6.8...v1.6.9) (2022-10-31) | ||
### Bug Fixes | ||
* remove property ([ad38fca](https://github.com/koatty/koatty_core/commit/ad38fca72a4a3626613a2687acbec8a58d9cccba)) | ||
* upgrade deps ([ae3240c](https://github.com/koatty/koatty_core/commit/ae3240cdcc18cb684c1b58a781b53b46d78ba3f0)) | ||
### [1.6.8](https://github.com/koatty/koatty_core/compare/v1.6.6...v1.6.8) (2022-05-26) | ||
@@ -7,0 +15,0 @@ |
/*! | ||
* @Author: richen | ||
* @Date: 2022-05-26 13:52:54 | ||
* @Date: 2022-10-31 15:13:13 | ||
* @License: BSD (3-Clause) | ||
@@ -81,3 +81,2 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
router: KoattyRouter; | ||
readonly listenCallback: () => void; | ||
appPath: string; | ||
@@ -356,4 +355,4 @@ rootPath: string; | ||
status: number; | ||
Start: (listenCallback: () => void) => unknownServer; | ||
Stop: (callback?: () => void) => void; | ||
readonly Start: (listenCallback: () => void) => unknownServer; | ||
readonly Stop: (callback?: () => void) => void; | ||
/** | ||
@@ -363,3 +362,3 @@ * gRPC service register | ||
*/ | ||
RegisterService?: (impl: any) => void; | ||
readonly RegisterService?: (impl: any) => void; | ||
} | ||
@@ -366,0 +365,0 @@ |
/*! | ||
* @Author: richen | ||
* @Date: 2022-05-26 13:52:41 | ||
* @Date: 2022-10-31 15:13:01 | ||
* @License: BSD (3-Clause) | ||
@@ -456,6 +456,5 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
this.server = server !== null && server !== void 0 ? server : this.server; | ||
listenCallback = listenCallback ? () => { | ||
listenCallback(); | ||
this.listenCallback(); | ||
} : this.listenCallback; | ||
listenCallback = listenCallback ? listenCallback : () => { | ||
koatty_logger.DefaultLogger.Log("think", "", `Server running ...`); | ||
}; | ||
return this.server.Start(listenCallback); | ||
@@ -462,0 +461,0 @@ } |
{ | ||
"name": "koatty_core", | ||
"version": "1.6.8", | ||
"version": "1.6.9", | ||
"description": "Koatty framework core", | ||
@@ -5,0 +5,0 @@ "scripts": { |
{ | ||
"name": "koatty_core", | ||
"version": "1.6.8", | ||
"version": "1.6.9", | ||
"description": "Koatty framework core", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
58508
2
1585