|
4 | 4 | "deep-clean-mac": "rm -f deno.lock && rm -rf $HOME/Library/Caches/deno && deno task clean", |
5 | 5 | "install": "deno install -f --unstable -A --importmap import_map.json silverbullet.ts", |
6 | 6 | "check": "find . -name '*.ts*' | xargs deno check", |
7 | | - "test": "deno test -A --unstable", |
8 | | - "build": "deno run -A build_plugs.ts && deno run -A --unstable build_web.ts", |
| 7 | + "test": "deno test -A --unstable-kv --unstable-worker-options", |
| 8 | + "build": "deno run -A build_plugs.ts && deno run -A build_web.ts", |
9 | 9 | "plugs": "deno run -A build_plugs.ts", |
10 | | - "server": "deno run -A --unstable --check silverbullet.ts", |
| 10 | + "server": "deno run -A --unstable-kv --unstable-worker-options --check silverbullet.ts", |
11 | 11 |
|
12 | 12 | "watch-web": "deno run -A --check build_web.ts --watch", |
13 | | - "watch-server": "deno run -A --unstable --check --watch silverbullet.ts", |
| 13 | + "watch-server": "deno run -A --unstable-kv --unstable-worker-options --check --watch silverbullet.ts", |
14 | 14 | "watch-plugs": "deno run -A --check build_plugs.ts -w", |
15 | 15 |
|
16 | 16 | "bundle": "deno run -A build_bundle.ts", |
17 | 17 | // Regenerates some bundle files (checked into the repo) |
18 | 18 | "generate": "./scripts/generate.sh", |
19 | 19 |
|
20 | 20 | // Compile |
21 | | - "compile": "deno task bundle && deno compile -A --unstable -o silverbullet dist/silverbullet.js", |
22 | | - "server:dist:linux-x86_64": "deno task bundle && deno compile -A --unstable --target x86_64-unknown-linux-gnu -o silverbullet dist/silverbullet.js && zip silverbullet-server-linux-x86_64.zip silverbullet", |
23 | | - "server:dist:darwin-x86_64": "deno task bundle && deno compile -A --unstable --target x86_64-apple-darwin -o silverbullet dist/silverbullet.js && zip silverbullet-server-darwin-x86_64.zip silverbullet", |
24 | | - "server:dist:darwin-aarch64": "deno task bundle && deno compile -A --unstable --target aarch64-apple-darwin -o silverbullet dist/silverbullet.js && zip silverbullet-server-darwin-aarch64.zip silverbullet", |
25 | | - "server:dist:windows-x86_64": "deno task bundle && deno compile -A --unstable --target x86_64-pc-windows-msvc -o silverbullet.exe dist/silverbullet.js && zip silverbullet-server-windows-x86_64.zip silverbullet.exe" |
| 21 | + "compile": "deno task bundle && deno compile -A --unstable-kv --unstable-worker-options -o silverbullet dist/silverbullet.js", |
| 22 | + "server:dist:linux-x86_64": "deno task bundle && deno compile -A --unstable-kv --unstable-worker-options --target x86_64-unknown-linux-gnu -o silverbullet dist/silverbullet.js && zip silverbullet-server-linux-x86_64.zip silverbullet", |
| 23 | + "server:dist:darwin-x86_64": "deno task bundle && deno compile -A --unstable-kv --unstable-worker-options --target x86_64-apple-darwin -o silverbullet dist/silverbullet.js && zip silverbullet-server-darwin-x86_64.zip silverbullet", |
| 24 | + "server:dist:darwin-aarch64": "deno task bundle && deno compile -A --unstable-kv --unstable-worker-options --target aarch64-apple-darwin -o silverbullet dist/silverbullet.js && zip silverbullet-server-darwin-aarch64.zip silverbullet", |
| 25 | + "server:dist:windows-x86_64": "deno task bundle && deno compile -A --unstable-kv --unstable-worker-options --target x86_64-pc-windows-msvc -o silverbullet.exe dist/silverbullet.js && zip silverbullet-server-windows-x86_64.zip silverbullet.exe" |
26 | 26 | }, |
27 | 27 |
|
28 | 28 | "compilerOptions": { |
|
0 commit comments