@king-3/file-kit 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -225,7 +225,7 @@ async function base64ToFile(archiveData, outputDir = ".") {
|
|
|
225
225
|
//#endregion
|
|
226
226
|
//#region src/config/defaults.ts
|
|
227
227
|
const CLI_NAME = "File Kit";
|
|
228
|
-
const CLI_VERSION = "1.1
|
|
228
|
+
const CLI_VERSION = "1.3.1";
|
|
229
229
|
const CLI_ALIAS = "fkt";
|
|
230
230
|
/**
|
|
231
231
|
* 默认配置
|
|
@@ -1041,7 +1041,7 @@ async function runInteractiveMode() {
|
|
|
1041
1041
|
const main = defineCommand({
|
|
1042
1042
|
meta: {
|
|
1043
1043
|
name: "fkt",
|
|
1044
|
-
version:
|
|
1044
|
+
version: CLI_VERSION,
|
|
1045
1045
|
description: `🔧 ${CLI_NAME} - 多功能文件工具箱`
|
|
1046
1046
|
},
|
|
1047
1047
|
args: { interactive: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@king-3/file-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "多功能文件工具箱(Base64 转换 · 视频转音频 · 加密/解密)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@king-3/eslint-config": "^4.4.0",
|
|
49
49
|
"@king-3/prettier-config": "^3.4.0",
|
|
50
50
|
"@types/node": "^20.19.26",
|
|
51
|
-
"bumpp": "^10.
|
|
51
|
+
"bumpp": "^10.4.1",
|
|
52
52
|
"eslint": "^9.39.1",
|
|
53
53
|
"prettier": "^3.7.4",
|
|
54
54
|
"tsdown": "^0.18.0",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"lint": "eslint",
|
|
67
67
|
"lint:fix": "eslint --fix",
|
|
68
68
|
"typecheck": "tsc --noEmit",
|
|
69
|
-
"release": "
|
|
69
|
+
"release": "tsx scripts/release.ts"
|
|
70
70
|
}
|
|
71
71
|
}
|