mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
783533d2e3
Ref #17944, https://github.com/swc-project/swc/issues/8893 TypeScript removes the `assert` keywords in the transpile, so this PR only works for JavaScript files
24 lines
752 B
JavaScript
Executable file
24 lines
752 B
JavaScript
Executable file
#!/usr/bin/env -S deno run --allow-read --allow-write
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import exports from "../../cli/napi/sym/symbol_exports.json" with {
|
|
type: "json",
|
|
};
|
|
|
|
const symbolExportLists = {
|
|
linux: `{ ${exports.symbols.map((s) => `"${s}"`).join("; ")}; };`,
|
|
windows: `LIBRARY\nEXPORTS\n${
|
|
exports.symbols
|
|
.map((symbol) => " " + symbol)
|
|
.join("\n")
|
|
}`,
|
|
macos: exports.symbols.map((symbol) => "_" + symbol).join("\n"),
|
|
};
|
|
|
|
for await (const [os, def] of Object.entries(symbolExportLists)) {
|
|
const defUrl = new URL(
|
|
`../../cli/napi/generated_symbol_exports_list_${os}.def`,
|
|
import.meta.url,
|
|
);
|
|
await Deno.writeTextFile(defUrl.pathname, def, { create: true });
|
|
}
|