koatty_core
Advanced tools
Comparing version 1.7.8 to 1.7.9
@@ -5,2 +5,10 @@ # Changelog | ||
### [1.7.9](https://github.com/koatty/koatty_core/compare/v1.7.8...v1.7.9) (2023-09-12) | ||
### Bug Fixes | ||
* comment ([096f93d](https://github.com/koatty/koatty_core/commit/096f93d621fb5a86d0b48a1e645d50fa65c90eed)) | ||
* logsPath ([332af7f](https://github.com/koatty/koatty_core/commit/332af7f869d516847262a749c4fcbb5a62c39c5b)) | ||
### [1.7.8](https://github.com/koatty/koatty_core/compare/v1.7.7...v1.7.8) (2023-03-04) | ||
@@ -7,0 +15,0 @@ |
/*! | ||
* @Author: richen | ||
* @Date: 2023-03-05 01:08:14 | ||
* @Date: 2023-09-12 11:02:38 | ||
* @License: BSD (3-Clause) | ||
@@ -49,3 +49,2 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
rootPath?: string; | ||
thinkPath?: string; | ||
} | ||
@@ -87,3 +86,3 @@ | ||
rootPath: string; | ||
thinkPath: string; | ||
logsPath: string; | ||
appDebug: boolean; | ||
@@ -90,0 +89,0 @@ /** |
/*! | ||
* @Author: richen | ||
* @Date: 2023-03-05 01:08:00 | ||
* @Date: 2023-09-12 11:02:17 | ||
* @License: BSD (3-Clause) | ||
@@ -298,3 +298,2 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
rootPath: '', | ||
thinkPath: '', | ||
}) { | ||
@@ -306,7 +305,6 @@ super(); | ||
this.env = process.env.KOATTY_ENV || process.env.NODE_ENV; | ||
const { appDebug, appPath, rootPath, thinkPath } = this.options; | ||
const { appDebug, appPath, rootPath } = this.options; | ||
this.appDebug = appDebug; | ||
this.appPath = appPath; | ||
this.rootPath = rootPath; | ||
this.thinkPath = thinkPath; | ||
this.metadata = new KoattyMetadata(); | ||
@@ -313,0 +311,0 @@ // constructor |
{ | ||
"name": "koatty_core", | ||
"version": "1.7.8", | ||
"version": "1.7.9", | ||
"description": "Koatty framework core", | ||
@@ -12,5 +12,4 @@ "scripts": { | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prepublishOnly": "npm test && npm run build && git push --follow-tags origin", | ||
"prerelease": "npm test && npm run build", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"release": "standard-version", | ||
@@ -82,2 +81,2 @@ "release:pre": "npm run release -- --prerelease", | ||
} | ||
} | ||
} |
{ | ||
"name": "koatty_core", | ||
"version": "1.7.8", | ||
"version": "1.7.9", | ||
"description": "Koatty framework core", | ||
@@ -12,5 +12,4 @@ "scripts": { | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prepublishOnly": "npm test && npm run build && git push --follow-tags origin", | ||
"prerelease": "npm test && npm run build", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"release": "standard-version", | ||
@@ -82,2 +81,2 @@ "release:pre": "npm run release -- --prerelease", | ||
} | ||
} | ||
} |
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
60735
1601