Compare commits

...

2 Commits

Author SHA1 Message Date
5d04b76225 chore(release): publish
- @egg/lark-msg-tool@1.6.2
2024-10-12 03:15:56 +00:00
bce2c085df chore(lark-msg): 修改变量名
All checks were successful
/ release (push) Successful in 26s
2024-10-12 03:15:32 +00:00
7 changed files with 10 additions and 6 deletions

2
package-lock.json generated
View File

@ -12122,7 +12122,7 @@
},
"packages/lark-msg-tool": {
"name": "@egg/lark-msg-tool",
"version": "1.6.1",
"version": "1.6.2",
"license": "ISC",
"dependencies": {
"@egg/logger": "^1.4.3",

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.2](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/lark-msg-tool@1.6.1...@egg/lark-msg-tool@1.6.2) (2024-10-12)
**Note:** Version bump only for package @egg/lark-msg-tool
## [1.6.1](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/lark-msg-tool@1.6.0...@egg/lark-msg-tool@1.6.1) (2024-10-12)
**Note:** Version bump only for package @egg/lark-msg-tool

View File

@ -1,6 +1,6 @@
{
"name": "@egg/lark-msg-tool",
"version": "1.6.1",
"version": "1.6.2",
"description": "Lark Msg Tools for Egg projects",
"type": "module",
"main": "src/index.ts",

View File

@ -1,6 +1,6 @@
import LarkBody from "./Body"
import LarkCard from "./Card"
import * as CardComponent from "./Card/component"
import LarkBody from "./larkBody"
import LarkCard from "./larkCard"
import * as cardComponent from "./larkCard/component"
import { LarkAction, LarkEvent } from "./types"
/**
@ -16,4 +16,4 @@ export const genCardOptions = (options: Record<string, string>) => {
}))
}
export { CardComponent, LarkAction, LarkBody, LarkCard, LarkEvent }
export { cardComponent, LarkAction, LarkBody, LarkCard, LarkEvent }