claude-ws 0.4.0-beta.2 → 0.4.0-beta.3
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/package.json
CHANGED
|
@@ -6,8 +6,8 @@ import { homedir } from 'os';
|
|
|
6
6
|
|
|
7
7
|
/** Get the data directory path. Uses DATA_DIR env or {CWD}/data */
|
|
8
8
|
export function getDataDir(): string {
|
|
9
|
-
const userCwd = process.env.CLAUDE_WS_USER_CWD || process.cwd();
|
|
10
|
-
return process.env.DATA_DIR || join(userCwd, 'data');
|
|
9
|
+
const userCwd = process.env.CLAUDE_WS_USER_CWD || /* turbopackIgnore: true */ process.cwd();
|
|
10
|
+
return process.env.DATA_DIR || join(/* turbopackIgnore: true */ userCwd, 'data');
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
/** Get the Agent Factory directory path (DATA_DIR/agent-factory) */
|
|
@@ -17,5 +17,5 @@ export function getAgentFactoryDir(): string {
|
|
|
17
17
|
|
|
18
18
|
/** Get the global Claude directory path (~/.claude) */
|
|
19
19
|
export function getGlobalClaudeDir(): string {
|
|
20
|
-
return join(homedir(), '.claude');
|
|
20
|
+
return join(/* turbopackIgnore: true */ homedir(), '.claude');
|
|
21
21
|
}
|