@dungle-scrubs/tallow 0.8.10 → 0.8.11
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/dist/config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type RuntimePathProvider } from "./runtime-path-provider.js";
|
|
2
2
|
export declare const APP_NAME = "tallow";
|
|
3
|
-
export declare const TALLOW_VERSION = "0.8.
|
|
3
|
+
export declare const TALLOW_VERSION = "0.8.11";
|
|
4
4
|
export declare const CONFIG_DIR = ".tallow";
|
|
5
5
|
/** ~/.tallow (or override from ~/.config/tallow-work-dirs) — all user config, sessions, auth, extensions */
|
|
6
6
|
export declare const TALLOW_HOME: string;
|
package/dist/config.js
CHANGED
|
@@ -6,7 +6,7 @@ import { fileURLToPath } from "node:url";
|
|
|
6
6
|
import { createRuntimePathProvider } from "./runtime-path-provider.js";
|
|
7
7
|
// ─── Identity ────────────────────────────────────────────────────────────────
|
|
8
8
|
export const APP_NAME = "tallow";
|
|
9
|
-
export const TALLOW_VERSION = "0.8.
|
|
9
|
+
export const TALLOW_VERSION = "0.8.11"; // x-release-please-version
|
|
10
10
|
export const CONFIG_DIR = ".tallow";
|
|
11
11
|
// ─── Paths ───────────────────────────────────────────────────────────────────
|
|
12
12
|
/** ~/.tallow (or override from ~/.config/tallow-work-dirs) — all user config, sessions, auth, extensions */
|
|
@@ -264,7 +264,9 @@ function detectRipgrep(): boolean {
|
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
export default function bashLive(pi: ExtensionAPI): void {
|
|
267
|
-
const baseBashTool = createBashTool(process.cwd()
|
|
267
|
+
const baseBashTool = createBashTool(process.cwd(), {
|
|
268
|
+
spawnHook: (ctx) => ({ ...ctx, cwd: process.cwd() }),
|
|
269
|
+
});
|
|
268
270
|
const displayConfig = getToolDisplayConfig("bash");
|
|
269
271
|
|
|
270
272
|
// Capture project root for BASH_MAINTAIN_PROJECT_WORKING_DIR
|