chore(release): publish
- @egg/hooks@1.2.0 - @egg/lark-msg-tool@1.2.0 - @egg/logger@1.3.0 - @egg/net-tool@1.4.0 - @egg/path-tool@1.3.0
This commit is contained in:
parent
4f787c01c0
commit
f54b16641e
12
package-lock.json
generated
12
package-lock.json
generated
@ -12250,7 +12250,7 @@
|
||||
},
|
||||
"packages/hooks": {
|
||||
"name": "@egg/hooks",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"lodash": "*"
|
||||
@ -12258,12 +12258,12 @@
|
||||
},
|
||||
"packages/lark-msg-tool": {
|
||||
"name": "@egg/lark-msg-tool",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"license": "ISC"
|
||||
},
|
||||
"packages/logger": {
|
||||
"name": "@egg/logger",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"winston": "*",
|
||||
@ -12272,16 +12272,16 @@
|
||||
},
|
||||
"packages/net-tool": {
|
||||
"name": "@egg/net-tool",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@egg/logger": "*",
|
||||
"@egg/logger": "^1.3.0",
|
||||
"winston": "*"
|
||||
}
|
||||
},
|
||||
"packages/path-tool": {
|
||||
"name": "@egg/path-tool",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"license": "ISC"
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 1.2.0 (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
||||
- **global-link:** 支持修改编译后的链接指向 ([4f787c0](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/4f787c01c0ca2b790e29452387b6e16aa8b0526a))
|
||||
|
||||
# 1.1.0 (2024-08-20)
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@egg/hooks",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"description": "Hooks for Egg projects",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
@ -21,4 +21,4 @@
|
||||
"dependencies": {
|
||||
"lodash": "*"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [1.2.0](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/lark-msg-tool@1.1.0...@egg/lark-msg-tool@1.2.0) (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
||||
- **global-link:** 支持修改编译后的链接指向 ([4f787c0](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/4f787c01c0ca2b790e29452387b6e16aa8b0526a))
|
||||
|
||||
# 1.1.0 (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@egg/lark-msg-tool",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"description": "Lark Msg Tools for Egg projects",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
@ -17,4 +17,4 @@
|
||||
],
|
||||
"author": "RainSun <zhaoyingbo@live.cn>",
|
||||
"license": "ISC"
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 1.3.0 (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
||||
- **global-link:** 支持修改编译后的链接指向 ([4f787c0](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/4f787c01c0ca2b790e29452387b6e16aa8b0526a))
|
||||
|
||||
## [1.2.1](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/logger@1.2.0...@egg/logger@1.2.1) (2024-08-20)
|
||||
|
||||
**Note:** Version bump only for package @egg/logger
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@egg/logger",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"description": "Logger for Egg projects",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
@ -20,4 +20,4 @@
|
||||
"winston": "*",
|
||||
"winston-daily-rotate-file": "*"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [1.4.0](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/net-tool@1.3.0...@egg/net-tool@1.4.0) (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
||||
- **global-link:** 支持修改编译后的链接指向 ([4f787c0](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/4f787c01c0ca2b790e29452387b6e16aa8b0526a))
|
||||
|
||||
# 1.3.0 (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@egg/net-tool",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"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": "*",
|
||||
"@egg/logger": "^1.3.0",
|
||||
"winston": "*"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 1.3.0 (2024-08-21)
|
||||
|
||||
### Features
|
||||
|
||||
- **global-link:** 支持修改编译后的链接指向 ([4f787c0](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/4f787c01c0ca2b790e29452387b6e16aa8b0526a))
|
||||
|
||||
## [1.2.1](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/path-tool@1.2.0...@egg/path-tool@1.2.1) (2024-08-20)
|
||||
|
||||
**Note:** Version bump only for package @egg/path-tool
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@egg/path-tool",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"description": "Path Tools for Egg projects",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
@ -16,4 +16,4 @@
|
||||
],
|
||||
"author": "RainSun <zhaoyingbo@live.cn>",
|
||||
"license": "ISC"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user