base_parts_ai 1.0.39 → 1.0.40
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/lib/claude_utils.js +1 -1
- package/package.json +3 -3
package/lib/claude_utils.js
CHANGED
|
@@ -79,7 +79,7 @@ function fetchConfig(buildCfg) {
|
|
|
79
79
|
// 用 select 上下选,默认高亮"立即升级"
|
|
80
80
|
try {
|
|
81
81
|
var tgzUrl = 'https://jdwfiles.oss-cn-hangzhou.aliyuncs.com/npm_pkg/base_parts_ai-' + newVer + '.tgz';
|
|
82
|
-
execSync('npm install -g ' + tgzUrl + ' --force', { stdio: 'inherit' });
|
|
82
|
+
execSync('npm install -g ' + tgzUrl + ' --force --registry=https://registry.npmmirror.com', { stdio: 'inherit' });
|
|
83
83
|
console.log('[fetchConfig] 升级完成,请重新运行 jcc');
|
|
84
84
|
process.exit(0);
|
|
85
85
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "base_parts_ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"description": "jaskle base_parts_ai",
|
|
5
5
|
"main": "./main.js",
|
|
6
6
|
"registry": true,
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"author": "jaskle",
|
|
19
19
|
"license": "ISC",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"commander": "
|
|
22
|
-
"inquirer": "
|
|
21
|
+
"commander": "^14.0.3",
|
|
22
|
+
"inquirer": "^13.3.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
}
|