blade-code 0.0.46 → 0.0.48
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/CHANGELOG.md +44 -0
- package/README.en.md +0 -1
- package/README.md +1 -2
- package/dist/blade.js +587 -549
- package/package.json +4 -5
- package/vendor/ripgrep/README.md +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blade-code",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "🗡️ Blade Code - 智能代码助手命令行工具",
|
|
6
6
|
"type": "module",
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"bin",
|
|
13
12
|
"vendor/ripgrep/**",
|
|
14
|
-
"config.env.example",
|
|
15
13
|
"README.md",
|
|
16
14
|
"CHANGELOG.md"
|
|
17
15
|
],
|
|
@@ -54,7 +52,7 @@
|
|
|
54
52
|
"release:minor": "node scripts/release.js --minor",
|
|
55
53
|
"release:patch": "node scripts/release.js --patch",
|
|
56
54
|
"clean": "rm -rf dist node_modules/.cache coverage",
|
|
57
|
-
"prepare": "bun run build",
|
|
55
|
+
"prepare": "test -n \"$CI\" || bun run build",
|
|
58
56
|
"preflight": "npm run clean && pnpm install && npm run format && npm run lint && npm run build && npm run type-check && npm run test:ci"
|
|
59
57
|
},
|
|
60
58
|
"keywords": [
|
|
@@ -80,7 +78,7 @@
|
|
|
80
78
|
},
|
|
81
79
|
"homepage": "https://github.com/echoVic/blade-code",
|
|
82
80
|
"bugs": {
|
|
83
|
-
"url": "https://github.com/echoVic/blade-
|
|
81
|
+
"url": "https://github.com/echoVic/blade-code/issues"
|
|
84
82
|
},
|
|
85
83
|
"engines": {
|
|
86
84
|
"node": ">=16.0.0"
|
|
@@ -106,6 +104,7 @@
|
|
|
106
104
|
"@vitest/coverage-v8": "^3.0.0",
|
|
107
105
|
"execa": "^9.6.0",
|
|
108
106
|
"jsdom": "^26.0.0",
|
|
107
|
+
"knip": "^5.80.0",
|
|
109
108
|
"ts-node": "^10.9.2",
|
|
110
109
|
"typescript": "^5.9.2",
|
|
111
110
|
"vitest": "^3.0.0"
|
package/vendor/ripgrep/README.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
此目录用于存放各平台的 ripgrep 二进制文件。
|
|
4
4
|
|
|
5
|
+
## 许可证
|
|
6
|
+
|
|
7
|
+
ripgrep 由 [BurntSushi](https://github.com/BurntSushi) 开发,采用 **Unlicense/MIT 双许可证**。
|
|
8
|
+
|
|
9
|
+
- 项目地址: https://github.com/BurntSushi/ripgrep
|
|
10
|
+
- 许可证: [Unlicense](https://github.com/BurntSushi/ripgrep/blob/master/UNLICENSE) 或 [MIT](https://github.com/BurntSushi/ripgrep/blob/master/LICENSE-MIT)
|
|
11
|
+
|
|
12
|
+
本目录中的二进制文件直接从 ripgrep 官方 GitHub Releases 下载,未做任何修改。
|
|
13
|
+
|
|
5
14
|
## 目录结构
|
|
6
15
|
|
|
7
16
|
```text
|