summaryrefslogtreecommitdiff
path: root/tools/napi/generate_symbols_lists.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-10-18 13:20:11 +0200
committerGitHub <noreply@github.com>2022-10-18 13:20:11 +0200
commitb560246f30066f9835633764837e99ff3adcf53b (patch)
treea2f19cabe8e95cd10d66879182e63879565d0776 /tools/napi/generate_symbols_lists.js
parent44a89dd6dc7864822ddb48d030af519160de90a2 (diff)
fix: move generated napi symbols to cli/ (#16330)
<!-- Before submitting a PR, please read http://deno.land/manual/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docstrings - feat(doc): Handle nested reexports Examples of bad title: - fix #7123 - update docs - fix bugs 2. Ensure there is a related issue and it is referenced in the PR text. 3. Ensure there are tests that cover the changes. 4. Ensure `cargo test` passes. 5. Ensure `./tools/format.js` passes without changing files. 6. Ensure `./tools/lint.js` passes. -->
Diffstat (limited to 'tools/napi/generate_symbols_lists.js')
-rwxr-xr-xtools/napi/generate_symbols_lists.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/napi/generate_symbols_lists.js b/tools/napi/generate_symbols_lists.js
index 0b4317170..c9a5bca3e 100755
--- a/tools/napi/generate_symbols_lists.js
+++ b/tools/napi/generate_symbols_lists.js
@@ -17,7 +17,7 @@ const symbolExportLists = {
for await (const [os, def] of Object.entries(symbolExportLists)) {
const defUrl = new URL(
- `../../cli/napi_sym/generated_symbol_exports_list_${os}.def`,
+ `../../cli/generated_symbol_exports_list_${os}.def`,
import.meta.url,
);
await Deno.writeTextFile(defUrl.pathname, def, { create: true });