bb6a1321fb
Multi-line tmux strip (context, quota, tools, todos, git), theme sync with Grok UI, full/essential/minimal presets, one-shot installer, EN+ZH docs, and 40 unit tests.
9 lines
308 B
JavaScript
Executable File
9 lines
308 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { pathToFileURL } from "node:url";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const entry = path.join(__dirname, "..", "dist", "src", "hook.js");
|
|
await import(pathToFileURL(entry).href);
|