this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add a working repo

+11 -2
bun.lockb

This is a binary file and will not be displayed.

+9 -1
index.ts
··· 1 1 #!/usr/bin/env bun 2 2 3 - import { Repo } from "@automerge/automerge-repo" 3 + import { AutomergeUrl, Repo } from "@automerge/automerge-repo" 4 + import { BrowserWebSocketClientAdapter } from "@automerge/automerge-repo-network-websocket" 4 5 import { Command } from 'commander'; 5 6 import ora from 'ora'; 6 7 import path from 'path'; ··· 8 9 import { cosmiconfig } from 'cosmiconfig'; 9 10 import ignore, { Ignore } from 'ignore'; 10 11 import type { Stats } from 'fs'; 12 + import { exit } from "process"; 13 + 14 + const repo = new Repo({ 15 + network: [ 16 + new BrowserWebSocketClientAdapter("wss://sync.automerge.org") 17 + ] 18 + }); 11 19 12 20 interface FileInfo { 13 21 path: string;
+2 -1
package.json
··· 1 1 { 2 2 "dependencies": { 3 3 "@automerge/automerge": "^2.2.8", 4 - "@automerge/automerge-repo": "^1.2.1", 4 + "@automerge/automerge-repo": "2.0.0-alpha.13", 5 + "@automerge/automerge-repo-network-websocket": "2.0.0-alpha.13", 5 6 "commander": "^13.0.0", 6 7 "cosmiconfig": "^9.0.0", 7 8 "ignore": "^7.0.0",