Skip to content

Commit fc654a8

Browse files
committed
fix: update usage examples in sync-from-node script to use npx tsx
1 parent f3017ea commit fc654a8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/sync-from-node.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Sync Node.js SQLite implementation files from GitHub into this package.
33
*
44
* Usage:
5-
* node scripts/sync-from-node.mjs [options]
5+
* npx tsx scripts/sync-from-node.ts [options]
66
*
77
* Options:
88
* --help, -h Show this help message
@@ -14,10 +14,10 @@
1414
* --dry-run Show what files would be downloaded without actually downloading
1515
*
1616
* Examples:
17-
* node scripts/sync-from-node.mjs
18-
* node scripts/sync-from-node.mjs --branch main
19-
* node scripts/sync-from-node.mjs --branch v22.12.0
20-
* node scripts/sync-from-node.mjs --dry-run
17+
* npx tsx scripts/sync-from-node.ts
18+
* npx tsx scripts/sync-from-node.ts --branch main
19+
* npx tsx scripts/sync-from-node.ts --branch v22.12.0
20+
* npx tsx scripts/sync-from-node.ts --dry-run
2121
*/
2222

2323
import { exec } from "node:child_process";

0 commit comments

Comments
 (0)