Fixes #97: SQLite is now async, optimized, tests
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// Generate available import symbols
|
||||
// from vfs.js file
|
||||
|
||||
import env from "../vfs.js";
|
||||
|
||||
let symbols = "";
|
||||
for (const symbol of Object.keys(env().env)) {
|
||||
symbols += `${symbol}\n`;
|
||||
}
|
||||
await Deno.writeFile(Deno.args[0], new TextEncoder().encode(symbols));
|
||||
Reference in New Issue
Block a user