browser-pilot-cli 0.1.5 → 0.2.1

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.
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // src/paths.ts
4
- import { join } from "path";
5
- import { homedir } from "os";
6
- var STATE_DIR = join(homedir(), ".browser-pilot");
7
- var STATE_FILE = join(STATE_DIR, "state.json");
8
- var SOCKET_PATH = join(STATE_DIR, "daemon.sock");
9
- var PID_FILE = join(STATE_DIR, "daemon.pid");
10
- var REFS_FILE = join(STATE_DIR, "refs.json");
11
-
12
- export {
13
- STATE_DIR,
14
- STATE_FILE,
15
- SOCKET_PATH,
16
- PID_FILE,
17
- REFS_FILE
18
- };