ccjk 13.3.16 → 13.3.17
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.
|
@@ -256,6 +256,7 @@ class ClaudeCodeConfigManager {
|
|
|
256
256
|
settings.env.ANTHROPIC_DEFAULT_SONNET_MODEL = profile.defaultSonnetModel;
|
|
257
257
|
if (profile.defaultOpusModel)
|
|
258
258
|
settings.env.ANTHROPIC_DEFAULT_OPUS_MODEL = profile.defaultOpusModel;
|
|
259
|
+
delete settings.model;
|
|
259
260
|
} else {
|
|
260
261
|
clearModelEnv(settings.env);
|
|
261
262
|
}
|
package/dist/chunks/index5.mjs
CHANGED
|
@@ -7429,9 +7429,17 @@ var Backend = function () {
|
|
|
7429
7429
|
Backend.type = 'backend';
|
|
7430
7430
|
|
|
7431
7431
|
const originalLog = console.log;
|
|
7432
|
+
const originalWarn = console.warn;
|
|
7433
|
+
const originalInfo = console.info;
|
|
7432
7434
|
console.log = () => {
|
|
7433
7435
|
};
|
|
7436
|
+
console.warn = () => {
|
|
7437
|
+
};
|
|
7438
|
+
console.info = () => {
|
|
7439
|
+
};
|
|
7434
7440
|
console.log = originalLog;
|
|
7441
|
+
console.warn = originalWarn;
|
|
7442
|
+
console.info = originalInfo;
|
|
7435
7443
|
const i18n = instance.createInstance();
|
|
7436
7444
|
const NAMESPACES = [
|
|
7437
7445
|
"agent-teams",
|
|
@@ -7528,8 +7536,14 @@ async function initI18n(language = "zh-CN") {
|
|
|
7528
7536
|
return;
|
|
7529
7537
|
}
|
|
7530
7538
|
const originalLog2 = console.log;
|
|
7539
|
+
const originalWarn2 = console.warn;
|
|
7540
|
+
const originalInfo2 = console.info;
|
|
7531
7541
|
console.log = () => {
|
|
7532
7542
|
};
|
|
7543
|
+
console.warn = () => {
|
|
7544
|
+
};
|
|
7545
|
+
console.info = () => {
|
|
7546
|
+
};
|
|
7533
7547
|
await i18n.use(Backend).init({
|
|
7534
7548
|
lng: language,
|
|
7535
7549
|
fallbackLng: "en",
|
|
@@ -7591,6 +7605,8 @@ async function initI18n(language = "zh-CN") {
|
|
|
7591
7605
|
missingKeyHandler: false
|
|
7592
7606
|
});
|
|
7593
7607
|
console.log = originalLog2;
|
|
7608
|
+
console.warn = originalWarn2;
|
|
7609
|
+
console.info = originalInfo2;
|
|
7594
7610
|
}
|
|
7595
7611
|
function format(template, values) {
|
|
7596
7612
|
if (!values)
|
package/dist/chunks/package.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.3.
|
|
4
|
+
"version": "13.3.17",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"description": "Turn Claude Code into a production-ready AI dev environment with one-command setup, persistent memory, MCP automation, cloud sync, and zero-config browser workflows.",
|
|
7
7
|
"author": {
|