pushwork 1.1.4 → 2.0.0-a.sub.0
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/CLAUDE.md +9 -5
- package/dist/cli.js +48 -55
- package/dist/cli.js.map +1 -1
- package/dist/commands.d.ts +5 -1
- package/dist/commands.d.ts.map +1 -1
- package/dist/commands.js +262 -263
- package/dist/commands.js.map +1 -1
- package/dist/core/change-detection.d.ts +1 -1
- package/dist/core/change-detection.d.ts.map +1 -1
- package/dist/core/change-detection.js +66 -103
- package/dist/core/change-detection.js.map +1 -1
- package/dist/core/config.d.ts +1 -1
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/config.js +14 -57
- package/dist/core/config.js.map +1 -1
- package/dist/core/index.d.ts +5 -5
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +5 -21
- package/dist/core/index.js.map +1 -1
- package/dist/core/move-detection.d.ts +2 -2
- package/dist/core/move-detection.d.ts.map +1 -1
- package/dist/core/move-detection.js +9 -13
- package/dist/core/move-detection.js.map +1 -1
- package/dist/core/snapshot.d.ts +1 -1
- package/dist/core/snapshot.d.ts.map +1 -1
- package/dist/core/snapshot.js +9 -46
- package/dist/core/snapshot.js.map +1 -1
- package/dist/core/sync-engine.d.ts +1 -1
- package/dist/core/sync-engine.d.ts.map +1 -1
- package/dist/core/sync-engine.js +113 -150
- package/dist/core/sync-engine.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -20
- package/dist/index.js.map +1 -1
- package/dist/types/config.d.ts +7 -6
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js +1 -5
- package/dist/types/config.js.map +1 -1
- package/dist/types/documents.js +4 -7
- package/dist/types/documents.js.map +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -19
- package/dist/types/index.js.map +1 -1
- package/dist/types/snapshot.js +1 -2
- package/dist/utils/content.js +4 -8
- package/dist/utils/content.js.map +1 -1
- package/dist/utils/directory.js +5 -9
- package/dist/utils/directory.js.map +1 -1
- package/dist/utils/fs.d.ts +1 -1
- package/dist/utils/fs.d.ts.map +1 -1
- package/dist/utils/fs.js +34 -84
- package/dist/utils/fs.js.map +1 -1
- package/dist/utils/index.d.ts +4 -4
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +4 -20
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/mime-types.js +5 -43
- package/dist/utils/mime-types.js.map +1 -1
- package/dist/utils/network-sync.d.ts +13 -8
- package/dist/utils/network-sync.d.ts.map +1 -1
- package/dist/utils/network-sync.js +65 -137
- package/dist/utils/network-sync.js.map +1 -1
- package/dist/utils/node-polyfills.d.ts +9 -0
- package/dist/utils/node-polyfills.d.ts.map +1 -0
- package/dist/utils/node-polyfills.js +9 -0
- package/dist/utils/node-polyfills.js.map +1 -0
- package/dist/utils/output.js +32 -39
- package/dist/utils/output.js.map +1 -1
- package/dist/utils/repo-factory.d.ts +8 -2
- package/dist/utils/repo-factory.d.ts.map +1 -1
- package/dist/utils/repo-factory.js +38 -47
- package/dist/utils/repo-factory.js.map +1 -1
- package/dist/utils/string-similarity.js +1 -5
- package/dist/utils/string-similarity.js.map +1 -1
- package/dist/utils/text-diff.js +5 -43
- package/dist/utils/text-diff.js.map +1 -1
- package/dist/utils/trace.js +6 -11
- package/dist/utils/trace.js.map +1 -1
- package/package.json +7 -5
- package/src/cli.ts +25 -34
- package/src/commands.ts +75 -11
- package/src/core/change-detection.ts +4 -4
- package/src/core/config.ts +2 -12
- package/src/core/index.ts +5 -5
- package/src/core/move-detection.ts +4 -4
- package/src/core/snapshot.ts +3 -3
- package/src/core/sync-engine.ts +11 -16
- package/src/index.ts +4 -4
- package/src/types/config.ts +8 -8
- package/src/types/index.ts +3 -3
- package/src/utils/directory.ts +1 -1
- package/src/utils/fs.ts +6 -4
- package/src/utils/index.ts +4 -4
- package/src/utils/network-sync.ts +62 -115
- package/src/utils/node-polyfills.ts +8 -0
- package/src/utils/repo-factory.ts +55 -10
- package/src/utils/trace.ts +1 -1
- package/tsconfig.json +2 -1
package/CLAUDE.md
CHANGED
|
@@ -103,20 +103,24 @@ Stored in `.pushwork/config.json` (local) and `~/.pushwork/config.json` (global)
|
|
|
103
103
|
|
|
104
104
|
Key fields:
|
|
105
105
|
- `sync_enabled: boolean` - Whether to do network sync
|
|
106
|
-
- `sync_server: string` - WebSocket relay URL (default: `wss://
|
|
107
|
-
- `sync_server_storage_id: StorageId` - Server identity for sync verification
|
|
106
|
+
- `sync_server: string` - WebSocket relay URL (default: `wss://subduction.sync.inkandswitch.com`)
|
|
108
107
|
- `exclude_patterns: string[]` - Gitignore-style patterns (default: `.git`, `node_modules`, `*.tmp`, `.pushwork`, `.DS_Store`)
|
|
109
108
|
- `sync.move_detection_threshold: number` - Similarity threshold for move detection (0-1, default 0.7)
|
|
110
109
|
|
|
111
|
-
## Network sync details
|
|
110
|
+
## Network sync details (Subduction)
|
|
112
111
|
|
|
113
|
-
|
|
112
|
+
Pushwork uses Subduction for network sync. Subduction replaces the old `BrowserWebSocketClientAdapter` with a Subduction transport layer that handles sync automatically.
|
|
113
|
+
|
|
114
|
+
- **Repo setup** (`src/utils/repo-factory.ts`): Creates a `WebCryptoSigner`, wraps `NodeFSStorageAdapter` in `SubductionStorageBridge`, hydrates `Subduction`, and calls `connectDiscover()` to the sync server. The `Repo` receives `{ subduction, storage }` instead of `{ storage, network }`.
|
|
115
|
+
- **Sync verification**: Uses head-stability polling instead of `StorageId`-based `getSyncInfo()`. Both `waitForSync()` and `waitForBidirectionalSync()` poll document heads until they stabilize.
|
|
116
|
+
- Uses `waitForSync()` to verify documents reach the server by polling head stability
|
|
114
117
|
- Uses `waitForBidirectionalSync()` to poll until document heads stabilize (no more incoming changes)
|
|
115
118
|
- Accepts optional `handles` param to check only specific handles instead of full tree traversal (used post-push in `sync()`)
|
|
116
119
|
- Timeout scales dynamically: `max(timeoutMs, 5000 + docCount * 50)` so large trees don't prematurely time out
|
|
117
120
|
- Tree traversal (`collectHeadsRecursive`) fetches siblings concurrently via `Promise.all`
|
|
118
121
|
- Documents sync level-by-level, deepest first, so children are on the server before their parents
|
|
119
122
|
- `handlesByPath` map tracks which documents changed and need syncing
|
|
123
|
+
- Default sync server: `wss://subduction.sync.inkandswitch.com`
|
|
120
124
|
|
|
121
125
|
## Leaf-first ordering
|
|
122
126
|
|
|
@@ -132,6 +136,6 @@ Used throughout sync-engine: if heads are available, calls `handle.changeAt(head
|
|
|
132
136
|
- **Avoid diffing artifact files.** `diffChars()` is O(n*m) and pointless for artifact directories since they use RawString (immutable snapshots). Artifact files should always be replaced with a fresh document rather than diffed+spliced. This applies to `updateRemoteFile()`, `applyMoveToRemote()`, and change detection. `ChangeDetector` skips `getContentAtHead()` and `getCurrentRemoteContent()` for artifact paths — it uses a SHA-256 `contentHash` stored in the snapshot to detect local changes, and checks heads to detect remote changes. If neither changed, the artifact is skipped entirely. The `contentHash` field on `SnapshotFileEntry` is optional and only populated for artifact files.
|
|
133
137
|
- **Sync timeout recovery.** `waitForSync()` returns `{ failed: DocHandle[] }` instead of throwing. When documents fail to sync (timeout or unavailable), `recreateFailedDocuments()` creates new Automerge docs with the same content, updates snapshot entries and parent directory references, then retries once. If documents still fail after recreation, it's reported as an error (not a warning) so the sync shows as "PARTIAL" rather than "SYNCED".
|
|
134
138
|
- **Document availability during clone.** `repo.find()` rejects with "Document X is unavailable" if the sync server doesn't have the document yet. `DocHandle.doc()` is synchronous and throws if the handle isn't ready. For clone scenarios, `sync()` retries `repo.find()` for the root document with exponential backoff (up to 6 attempts). `ChangeDetector.findDocument()` wraps `repo.find()` + `doc()` with retry logic for all document fetches during change detection.
|
|
135
|
-
- **Server load.** `
|
|
139
|
+
- **Server load.** `waitForSync` processes documents in batches of 10 (`SYNC_BATCH_SIZE`) to avoid flooding the server with concurrent sync messages. Without batching, syncing 100+ documents simultaneously can overwhelm the sync server.
|
|
136
140
|
- **`waitForBidirectionalSync` on large trees.** Full tree traversal (`getAllDocumentHeads`) is expensive because it `repo.find()`s every document. For post-push stabilization, pass the `handles` option to only check documents that actually changed. The initial pre-pull call still needs the full scan to discover remote changes. The dynamic timeout adds the first scan's duration on top of the base timeout, since the first scan is just establishing baseline — its duration shouldn't count against stability-wait time.
|
|
137
141
|
- **Versioned URLs and `repo.find()`.** `repo.find(versionedUrl)` returns a view handle whose `.heads()` returns the VERSION heads, not the current document heads. Always use `getPlainUrl()` when you need the current/mutable state. The snapshot head update loop at the end of `sync()` must use `getPlainUrl(snapshotEntry.url)` — without this, artifact directories (which store versioned URLs) get stale heads written to the snapshot, causing `changeAt()` to fork from the wrong point on the next sync. This was the root cause of the artifact deletion resurrection bug: `batchUpdateDirectory` would `changeAt` from an empty directory state where the file entry didn't exist yet, so the splice found nothing to delete.
|
package/dist/cli.js
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
const extra_typings_1 = require("@commander-js/extra-typings");
|
|
8
|
-
const chalk_1 = __importDefault(require("chalk"));
|
|
9
|
-
const commands_1 = require("./commands");
|
|
2
|
+
import { Command, Option } from "@commander-js/extra-typings";
|
|
3
|
+
import chalk from "chalk";
|
|
4
|
+
import { init, clone, sync, root, diff, status, log, checkout, commit, url, rm, ls, config, watch, read, } from "./commands.js";
|
|
5
|
+
import { createRequire } from "module";
|
|
6
|
+
const require = createRequire(import.meta.url);
|
|
10
7
|
const version = require("../package.json").version;
|
|
11
|
-
const program = new
|
|
8
|
+
const program = new Command()
|
|
12
9
|
.name("pushwork")
|
|
13
10
|
.description("Bidirectional directory synchronization using Automerge CRDTs")
|
|
14
11
|
.version(version, "-V, --version", "output the version number");
|
|
@@ -17,14 +14,13 @@ program
|
|
|
17
14
|
.command("init")
|
|
18
15
|
.summary("Initialize sync in a directory")
|
|
19
16
|
.argument("[path]", "Directory path to initialize (default: current directory)", ".")
|
|
20
|
-
.option("--sync-server <url>
|
|
17
|
+
.option("--sync-server <url>", "Custom sync server URL")
|
|
21
18
|
.action(async (path, opts) => {
|
|
22
|
-
|
|
23
|
-
await (0, commands_1.init)(path, { syncServer, syncServerStorageId });
|
|
19
|
+
await init(path, { syncServer: opts.syncServer });
|
|
24
20
|
});
|
|
25
21
|
// Track command (set root directory URL without full initialization)
|
|
26
22
|
const trackAction = async (url, path, opts) => {
|
|
27
|
-
await
|
|
23
|
+
await root(url, path, { force: opts.force });
|
|
28
24
|
};
|
|
29
25
|
program
|
|
30
26
|
.command("track")
|
|
@@ -51,15 +47,13 @@ program
|
|
|
51
47
|
.argument("<url>", "AutomergeUrl of root directory to clone (format: automerge:XXXXX)")
|
|
52
48
|
.argument("<path>", "Target directory path")
|
|
53
49
|
.option("-f, --force", "Overwrite existing directory", false)
|
|
54
|
-
.option("--sync-server <url>
|
|
50
|
+
.option("--sync-server <url>", "Custom sync server URL")
|
|
55
51
|
.option("-v, --verbose", "Verbose output", false)
|
|
56
52
|
.action(async (url, path, opts) => {
|
|
57
|
-
|
|
58
|
-
await (0, commands_1.clone)(url, path, {
|
|
53
|
+
await clone(url, path, {
|
|
59
54
|
force: opts.force,
|
|
60
55
|
verbose: opts.verbose,
|
|
61
|
-
syncServer,
|
|
62
|
-
syncServerStorageId,
|
|
56
|
+
syncServer: opts.syncServer,
|
|
63
57
|
});
|
|
64
58
|
});
|
|
65
59
|
// Commit command
|
|
@@ -68,7 +62,7 @@ program
|
|
|
68
62
|
.summary("Save local changes to Automerge documents")
|
|
69
63
|
.argument("[path]", "Directory path to commit (default: current directory)", ".")
|
|
70
64
|
.action(async (path, _opts) => {
|
|
71
|
-
await
|
|
65
|
+
await commit(path);
|
|
72
66
|
});
|
|
73
67
|
// Sync command
|
|
74
68
|
program
|
|
@@ -78,10 +72,10 @@ program
|
|
|
78
72
|
.option("--dry-run", "Show what would be done without applying changes", false)
|
|
79
73
|
.option("--gentle", "Use config files and only sync changed files (instead of default full resync)", false)
|
|
80
74
|
.option("--nuclear", "Recreate all Automerge documents from scratch", false)
|
|
81
|
-
.addOption(new
|
|
75
|
+
.addOption(new Option("-f, --force", "Accepted for backwards compatibility").default(false).hideHelp())
|
|
82
76
|
.option("-v, --verbose", "Verbose output", false)
|
|
83
77
|
.action(async (path, opts) => {
|
|
84
|
-
await
|
|
78
|
+
await sync(path, {
|
|
85
79
|
dryRun: opts.dryRun,
|
|
86
80
|
force: opts.force,
|
|
87
81
|
gentle: opts.gentle,
|
|
@@ -96,7 +90,7 @@ program
|
|
|
96
90
|
.argument("[path]", "Limit diff to specific path (default: current directory)", ".")
|
|
97
91
|
.option("--name-only", "Show only changed file names", false)
|
|
98
92
|
.action(async (path, opts) => {
|
|
99
|
-
await
|
|
93
|
+
await diff(path, {
|
|
100
94
|
nameOnly: opts.nameOnly,
|
|
101
95
|
});
|
|
102
96
|
});
|
|
@@ -107,7 +101,7 @@ program
|
|
|
107
101
|
.argument("[path]", "Directory path (default: current directory)", ".")
|
|
108
102
|
.option("-v, --verbose", "Show detailed status including document info and all tracked files", false)
|
|
109
103
|
.action(async (path, opts) => {
|
|
110
|
-
await
|
|
104
|
+
await status(path, {
|
|
111
105
|
verbose: opts.verbose,
|
|
112
106
|
});
|
|
113
107
|
});
|
|
@@ -120,7 +114,7 @@ program
|
|
|
120
114
|
.option("--since <date>", "Show syncs since date")
|
|
121
115
|
.option("--limit <n>", "Limit number of syncs shown", "10")
|
|
122
116
|
.action(async (path, opts) => {
|
|
123
|
-
await
|
|
117
|
+
await log(path, {
|
|
124
118
|
oneline: opts.oneline,
|
|
125
119
|
since: opts.since,
|
|
126
120
|
limit: parseInt(opts.limit),
|
|
@@ -134,7 +128,7 @@ program
|
|
|
134
128
|
.argument("[path]", "Specific path to restore (default: current directory)", ".")
|
|
135
129
|
.option("-f, --force", "Force checkout even if there are uncommitted changes", false)
|
|
136
130
|
.action(async (syncId, path, opts) => {
|
|
137
|
-
await
|
|
131
|
+
await checkout(syncId, path, {
|
|
138
132
|
force: opts.force,
|
|
139
133
|
});
|
|
140
134
|
});
|
|
@@ -144,7 +138,7 @@ program
|
|
|
144
138
|
.summary("Show the Automerge root URL")
|
|
145
139
|
.argument("[path]", "Directory path (default: current directory)", ".")
|
|
146
140
|
.action(async (path) => {
|
|
147
|
-
await
|
|
141
|
+
await url(path);
|
|
148
142
|
});
|
|
149
143
|
// Remove command
|
|
150
144
|
program
|
|
@@ -152,7 +146,7 @@ program
|
|
|
152
146
|
.summary("Remove local pushwork data")
|
|
153
147
|
.argument("[path]", "Directory path (default: current directory)", ".")
|
|
154
148
|
.action(async (path) => {
|
|
155
|
-
await
|
|
149
|
+
await rm(path);
|
|
156
150
|
});
|
|
157
151
|
// List command
|
|
158
152
|
program
|
|
@@ -161,7 +155,7 @@ program
|
|
|
161
155
|
.argument("[path]", "Directory path (default: current directory)", ".")
|
|
162
156
|
.option("-v, --verbose", "Show with Automerge URLs", false)
|
|
163
157
|
.action(async (path, opts) => {
|
|
164
|
-
await
|
|
158
|
+
await ls(path, {
|
|
165
159
|
verbose: opts.verbose,
|
|
166
160
|
});
|
|
167
161
|
});
|
|
@@ -173,7 +167,7 @@ program
|
|
|
173
167
|
.option("--list", "Show full configuration", false)
|
|
174
168
|
.option("--get <key>", "Get specific config value (dot notation, e.g., sync.move_detection_threshold)")
|
|
175
169
|
.action(async (path, opts) => {
|
|
176
|
-
await
|
|
170
|
+
await config(path, {
|
|
177
171
|
list: opts.list,
|
|
178
172
|
get: opts.get,
|
|
179
173
|
});
|
|
@@ -187,12 +181,23 @@ program
|
|
|
187
181
|
.option("--dir <dir>", "Directory to watch for changes (relative to working directory)", "src")
|
|
188
182
|
.option("-v, --verbose", "Show build script output", false)
|
|
189
183
|
.action(async (path, opts) => {
|
|
190
|
-
await
|
|
184
|
+
await watch(path, {
|
|
191
185
|
script: opts.script,
|
|
192
186
|
watchDir: opts.dir,
|
|
193
187
|
verbose: opts.verbose,
|
|
194
188
|
});
|
|
195
189
|
});
|
|
190
|
+
// Read command
|
|
191
|
+
program
|
|
192
|
+
.command("read")
|
|
193
|
+
.summary("Read a file document by its Automerge URL")
|
|
194
|
+
.argument("<url>", "AutomergeUrl of file document (format: automerge:XXXXX)")
|
|
195
|
+
.option("-r, --remote", "Read from sync server instead of local storage", false)
|
|
196
|
+
.action(async (url, opts) => {
|
|
197
|
+
await read(url, {
|
|
198
|
+
remote: opts.remote,
|
|
199
|
+
});
|
|
200
|
+
});
|
|
196
201
|
// Completion command (hidden from help)
|
|
197
202
|
program.command("completion", { hidden: true }).action(() => {
|
|
198
203
|
// Generate completion dynamically from registered commands
|
|
@@ -266,52 +271,40 @@ compdef _pushwork pushwork
|
|
|
266
271
|
`.trim();
|
|
267
272
|
console.log(completionScript);
|
|
268
273
|
});
|
|
269
|
-
// Helper to validate and extract sync server options
|
|
270
|
-
function validateSyncServer(syncServerOpt) {
|
|
271
|
-
if (!syncServerOpt) {
|
|
272
|
-
return [undefined, undefined];
|
|
273
|
-
}
|
|
274
|
-
if (syncServerOpt.length < 2) {
|
|
275
|
-
console.error(chalk_1.default.red("Error: --sync-server requires both URL and storage ID"));
|
|
276
|
-
process.exit(1);
|
|
277
|
-
}
|
|
278
|
-
const [syncServer, syncServerStorageId] = syncServerOpt;
|
|
279
|
-
return [syncServer, syncServerStorageId];
|
|
280
|
-
}
|
|
281
274
|
process.on("unhandledRejection", (error) => {
|
|
282
|
-
console.log(
|
|
275
|
+
console.log(chalk.bgRed.white(" ERROR "));
|
|
283
276
|
if (error instanceof Error && error.stack) {
|
|
284
|
-
console.log(
|
|
277
|
+
console.log(chalk.red(error.stack));
|
|
285
278
|
}
|
|
286
279
|
else {
|
|
287
|
-
console.error(
|
|
280
|
+
console.error(chalk.red(error));
|
|
288
281
|
}
|
|
289
282
|
process.exit(1);
|
|
290
283
|
});
|
|
291
284
|
// Configure help colors using Commander v13's built-in color support
|
|
292
285
|
program
|
|
293
286
|
.configureHelp({
|
|
294
|
-
styleTitle: (str) =>
|
|
295
|
-
styleCommandText: (str) =>
|
|
296
|
-
styleCommandDescription: (str) =>
|
|
297
|
-
styleOptionText: (str) =>
|
|
298
|
-
styleArgumentText: (str) =>
|
|
287
|
+
styleTitle: (str) => chalk.bold(str),
|
|
288
|
+
styleCommandText: (str) => chalk.white(str),
|
|
289
|
+
styleCommandDescription: (str) => chalk.dim(str),
|
|
290
|
+
styleOptionText: (str) => chalk.green(str),
|
|
291
|
+
styleArgumentText: (str) => chalk.cyan(str),
|
|
299
292
|
subcommandTerm: (cmd) => {
|
|
300
293
|
const opts = cmd.options
|
|
301
294
|
.filter((opt) => opt.flags !== "-h, --help")
|
|
302
295
|
.map((opt) => opt.short || opt.long)
|
|
303
296
|
.join(", ");
|
|
304
|
-
const name =
|
|
297
|
+
const name = chalk.white(cmd.name());
|
|
305
298
|
const args = cmd.registeredArguments
|
|
306
299
|
.map((arg) => arg.required
|
|
307
|
-
?
|
|
308
|
-
:
|
|
300
|
+
? chalk.cyan(`<${arg.name()}>`)
|
|
301
|
+
: chalk.dim(`[${arg.name()}]`))
|
|
309
302
|
.join(" ");
|
|
310
|
-
return [name, args, opts &&
|
|
303
|
+
return [name, args, opts && chalk.dim(`[${opts}]`)]
|
|
311
304
|
.filter(Boolean)
|
|
312
305
|
.join(" ");
|
|
313
306
|
},
|
|
314
307
|
})
|
|
315
|
-
.addHelpText("after",
|
|
308
|
+
.addHelpText("after", chalk.dim('\nEnable tab completion by adding this to your ~/.zshrc:\neval "$(pushwork completion)"'));
|
|
316
309
|
program.parseAsync();
|
|
317
310
|
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
package/dist/commands.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CloneOptions, SyncOptions, DiffOptions, LogOptions, CheckoutOptions, InitOptions, ConfigOptions, StatusOptions, WatchOptions, CommandOptions } from "./types";
|
|
1
|
+
import { CloneOptions, SyncOptions, DiffOptions, LogOptions, CheckoutOptions, InitOptions, ConfigOptions, StatusOptions, WatchOptions, ReadOptions, CommandOptions } from "./types/index.js";
|
|
2
2
|
/**
|
|
3
3
|
* Initialize sync in a directory
|
|
4
4
|
*/
|
|
@@ -54,4 +54,8 @@ export declare function watch(targetPath?: string, options?: WatchOptions): Prom
|
|
|
54
54
|
export declare function root(rootUrl: string, targetPath?: string, options?: {
|
|
55
55
|
force?: boolean;
|
|
56
56
|
}): Promise<void>;
|
|
57
|
+
/**
|
|
58
|
+
* Read a file document by its Automerge URL and print its content
|
|
59
|
+
*/
|
|
60
|
+
export declare function read(docUrl: string, options?: ReadOptions): Promise<void>;
|
|
57
61
|
//# sourceMappingURL=commands.d.ts.map
|
package/dist/commands.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../src/commands.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,YAAY,EACZ,WAAW,EACX,WAAW,EACX,UAAU,EACV,eAAe,EACf,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,
|
|
1
|
+
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../src/commands.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,YAAY,EACZ,WAAW,EACX,WAAW,EACX,UAAU,EACV,eAAe,EACf,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACZ,WAAW,EAIX,cAAc,EACf,MAAM,kBAAkB,CAAC;AAqI1B;;GAEG;AACH,wBAAsB,IAAI,CACxB,UAAU,EAAE,MAAM,EAClB,OAAO,GAAE,WAAgB,GACxB,OAAO,CAAC,IAAI,CAAC,CA4Df;AAED;;GAEG;AACH,wBAAsB,IAAI,CACxB,UAAU,oBAAM,EAChB,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,IAAI,CAAC,CA6Gf;AAED;;GAEG;AACH,wBAAsB,IAAI,CACxB,UAAU,oBAAM,EAChB,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,IAAI,CAAC,CAgGf;AAED;;GAEG;AACH,wBAAsB,MAAM,CAC1B,UAAU,GAAE,MAAY,EACxB,OAAO,GAAE,aAAkB,GAC1B,OAAO,CAAC,IAAI,CAAC,CAyEf;AAED;;GAEG;AACH,wBAAsB,GAAG,CACvB,UAAU,oBAAM,EAChB,QAAQ,EAAE,UAAU,GACnB,OAAO,CAAC,IAAI,CAAC,CAqBf;AAED;;GAEG;AACH,wBAAsB,QAAQ,CAC5B,MAAM,EAAE,MAAM,EACd,UAAU,oBAAM,EAChB,QAAQ,EAAE,eAAe,GACxB,OAAO,CAAC,IAAI,CAAC,CASf;AAED;;GAEG;AACH,wBAAsB,KAAK,CACzB,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,YAAY,GACpB,OAAO,CAAC,IAAI,CAAC,CA+Df;AAED;;GAEG;AACH,wBAAsB,GAAG,CAAC,UAAU,GAAE,MAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAyBjE;AAED;;GAEG;AACH,wBAAsB,EAAE,CAAC,UAAU,GAAE,MAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CA8BhE;AAED,wBAAsB,MAAM,CAC1B,UAAU,EAAE,MAAM,EAClB,QAAQ,GAAE,cAAmB,GAC5B,OAAO,CAAC,IAAI,CAAC,CA0Bf;AAED;;GAEG;AACH,wBAAsB,EAAE,CACtB,UAAU,GAAE,MAAY,EACxB,OAAO,GAAE,cAAmB,GAC3B,OAAO,CAAC,IAAI,CAAC,CAmCf;AAED;;GAEG;AACH,wBAAsB,MAAM,CAC1B,UAAU,GAAE,MAAY,EACxB,OAAO,GAAE,aAAkB,GAC1B,OAAO,CAAC,IAAI,CAAC,CA0Cf;AAED;;GAEG;AACH,wBAAsB,KAAK,CACzB,UAAU,GAAE,MAAY,EACxB,OAAO,GAAE,YAAiB,GACzB,OAAO,CAAC,IAAI,CAAC,CAwIf;AA+CD;;GAEG;AACH,wBAAsB,IAAI,CACxB,OAAO,EAAE,MAAM,EACf,UAAU,GAAE,MAAY,EACxB,OAAO,GAAE;IAAE,KAAK,CAAC,EAAE,OAAO,CAAA;CAAO,GAChC,OAAO,CAAC,IAAI,CAAC,CAuCf;AAED;;GAEG;AACH,wBAAsB,IAAI,CACzB,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,WAAgB,GACvB,OAAO,CAAC,IAAI,CAAC,CAsDf"}
|