cc-viewer 1.5.31 → 1.5.32
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/interceptor.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
const _ccvSkipArgs = ['--version', '-v', '--v', '--help', '-h', 'doctor', 'install', 'update', 'upgrade', 'auth', 'setup-token', 'agents', 'plugin', 'plugins', 'mcp'];
|
|
6
6
|
const _ccvSkip = _ccvSkipArgs.includes(process.argv[2]);
|
|
7
7
|
|
|
8
|
-
import './proxy-env.js';
|
|
8
|
+
import './lib/proxy-env.js';
|
|
9
9
|
import { appendFileSync, mkdirSync, readFileSync, statSync, renameSync, unlinkSync, existsSync } from 'node:fs';
|
|
10
10
|
import { homedir } from 'node:os';
|
|
11
11
|
import { fileURLToPath } from 'node:url';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-viewer",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.32",
|
|
4
4
|
"description": "Claude Code Logger visualization management tool",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "server.js",
|
|
@@ -47,14 +47,11 @@
|
|
|
47
47
|
"server.js",
|
|
48
48
|
"cli.js",
|
|
49
49
|
"proxy.js",
|
|
50
|
-
"proxy-errors.js",
|
|
51
50
|
"interceptor.js",
|
|
52
|
-
"proxy-env.js",
|
|
53
51
|
"i18n.js",
|
|
54
52
|
"findcc.js",
|
|
55
53
|
"lib/",
|
|
56
54
|
"pty-manager.js",
|
|
57
|
-
"locales/",
|
|
58
55
|
"workspace-registry.js",
|
|
59
56
|
"concepts/"
|
|
60
57
|
],
|
package/proxy.js
CHANGED
|
@@ -4,7 +4,7 @@ import { readFileSync, existsSync } from 'node:fs';
|
|
|
4
4
|
import { join } from 'node:path';
|
|
5
5
|
import { homedir } from 'node:os';
|
|
6
6
|
import { setupInterceptor } from './interceptor.js';
|
|
7
|
-
import { extractApiErrorMessage, formatProxyRequestError } from './proxy-errors.js';
|
|
7
|
+
import { extractApiErrorMessage, formatProxyRequestError } from './lib/proxy-errors.js';
|
|
8
8
|
|
|
9
9
|
// Setup interceptor to patch fetch
|
|
10
10
|
setupInterceptor();
|
|
File without changes
|
|
File without changes
|