koatty_core
Advanced tools
Comparing version 1.7.9 to 1.7.10
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.7.10](https://github.com/koatty/koatty_core/compare/v1.7.9...v1.7.10) (2023-09-12) | ||
### Bug Fixes | ||
* restore thinkPath ([76885fe](https://github.com/koatty/koatty_core/commit/76885fe2539ed7386da84bc22bca5e5736198917)) | ||
### [1.7.9](https://github.com/koatty/koatty_core/compare/v1.7.8...v1.7.9) (2023-09-12) | ||
@@ -7,0 +14,0 @@ |
/*! | ||
* @Author: richen | ||
* @Date: 2023-09-12 11:02:38 | ||
* @Date: 2023-09-12 11:14:38 | ||
* @License: BSD (3-Clause) | ||
@@ -49,2 +49,3 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
rootPath?: string; | ||
thinkPath?: string; | ||
} | ||
@@ -86,2 +87,3 @@ | ||
rootPath: string; | ||
thinkPath: string; | ||
logsPath: string; | ||
@@ -88,0 +90,0 @@ appDebug: boolean; |
/*! | ||
* @Author: richen | ||
* @Date: 2023-09-12 11:02:17 | ||
* @Date: 2023-09-12 11:14:16 | ||
* @License: BSD (3-Clause) | ||
@@ -298,2 +298,3 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
rootPath: '', | ||
thinkPath: '', | ||
}) { | ||
@@ -305,6 +306,7 @@ super(); | ||
this.env = process.env.KOATTY_ENV || process.env.NODE_ENV; | ||
const { appDebug, appPath, rootPath } = this.options; | ||
const { appDebug, appPath, rootPath, thinkPath } = this.options; | ||
this.appDebug = appDebug; | ||
this.appPath = appPath; | ||
this.rootPath = rootPath; | ||
this.thinkPath = thinkPath; | ||
this.metadata = new KoattyMetadata(); | ||
@@ -311,0 +313,0 @@ // constructor |
{ | ||
"name": "koatty_core", | ||
"version": "1.7.9", | ||
"version": "1.7.10", | ||
"description": "Koatty framework core", | ||
@@ -80,2 +80,2 @@ "scripts": { | ||
} | ||
} | ||
} |
{ | ||
"name": "koatty_core", | ||
"version": "1.7.9", | ||
"version": "1.7.10", | ||
"description": "Koatty framework core", | ||
@@ -80,2 +80,2 @@ "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
61159
1607