We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0848fe commit 13c64c0Copy full SHA for 13c64c0
bin/query.ts
@@ -1,10 +1,9 @@
1
#!/usr/bin/env node
2
3
+import {mkdir, writeFile} from "node:fs/promises";
4
+import {dirname, join} from "node:path";
5
import {parseArgs} from "node:util";
6
import {getDatabase, getDatabaseConfig, getQueryCachePath} from "../src/databases/index.js";
-import {dirname} from "node:path/win32";
-import {mkdir, writeFile} from "node:fs/promises";
7
-import {join} from "node:path";
8
9
if (process.argv[1] === import.meta.filename) run();
10
0 commit comments