Compare commits

...

2 Commits

Author SHA1 Message Date
6d47652aa3 chore(release): publish
- @egg/logger@1.4.2
 - @egg/net-tool@1.6.3
2024-09-23 12:08:47 +00:00
015ee7ee51 chore(logger): 修改彩色日志输出排序
All checks were successful
/ release (push) Successful in 24s
2024-09-23 12:08:25 +00:00
6 changed files with 15 additions and 7 deletions

6
package-lock.json generated
View File

@ -12263,7 +12263,7 @@
},
"packages/logger": {
"name": "@egg/logger",
"version": "1.4.1",
"version": "1.4.2",
"license": "ISC",
"dependencies": {
"winston": "*",
@ -12272,10 +12272,10 @@
},
"packages/net-tool": {
"name": "@egg/net-tool",
"version": "1.6.2",
"version": "1.6.3",
"license": "ISC",
"dependencies": {
"@egg/logger": "^1.4.1",
"@egg/logger": "^1.4.2",
"winston": "*"
}
},

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.4.2](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/logger@1.4.1...@egg/logger@1.4.2) (2024-09-23)
**Note:** Version bump only for package @egg/logger
## [1.4.1](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/logger@1.4.0...@egg/logger@1.4.1) (2024-09-23)
### Bug Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@egg/logger",
"version": "1.4.1",
"version": "1.4.2",
"description": "Logger for Egg projects",
"type": "module",
"main": "src/index.ts",

View File

@ -50,7 +50,7 @@ const formatList = [
// 开发环境下输出彩色日志
if (!isProd) {
formatList.push(format.colorize())
formatList.unshift(format.colorize())
}
const logger = winston.createLogger({

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.6.3](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/net-tool@1.6.2...@egg/net-tool@1.6.3) (2024-09-23)
**Note:** Version bump only for package @egg/net-tool
## [1.6.2](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/net-tool@1.6.1...@egg/net-tool@1.6.2) (2024-09-23)
**Note:** Version bump only for package @egg/net-tool

View File

@ -1,6 +1,6 @@
{
"name": "@egg/net-tool",
"version": "1.6.2",
"version": "1.6.3",
"description": "Net Tools for Egg projects",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"author": "RainSun <zhaoyingbo@live.cn>",
"license": "ISC",
"dependencies": {
"@egg/logger": "^1.4.1",
"@egg/logger": "^1.4.2",
"winston": "*"
}
}