diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-23 01:01:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 00:01:31 +0000 |
commit | 3f8efe5289d88097ab49e7a8fcda763c2823376b (patch) | |
tree | 736b2f2315a46a81af1ecfec4e5efb4f2a7d3521 /tools/napi/generate_symbols_lists.js | |
parent | 715675565a928a7ac819b89fa40d8b74e7e1c8bc (diff) |
Revert "chore: move all node-api impl to ext (#24662)" (#24680)
This reverts commit d00fbd70258a77a267fe20bdd2c4a028c799b693.
Reverting because, it caused a failure during v1.45.3 publish:
https://github.com/denoland/deno/actions/runs/10048730693/job/27773718095
Diffstat (limited to 'tools/napi/generate_symbols_lists.js')
-rwxr-xr-x | tools/napi/generate_symbols_lists.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/napi/generate_symbols_lists.js b/tools/napi/generate_symbols_lists.js index efb0edc04..11cf1c434 100755 --- a/tools/napi/generate_symbols_lists.js +++ b/tools/napi/generate_symbols_lists.js @@ -1,7 +1,7 @@ #!/usr/bin/env -S deno run --allow-read --allow-write // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import exports from "../../ext/napi/sym/symbol_exports.json" with { +import exports from "../../cli/napi/sym/symbol_exports.json" with { type: "json", }; @@ -17,7 +17,7 @@ const symbolExportLists = { for await (const [os, def] of Object.entries(symbolExportLists)) { const defUrl = new URL( - `../../ext/napi/generated_symbol_exports_list_${os}.def`, + `../../cli/napi/generated_symbol_exports_list_${os}.def`, import.meta.url, ); await Deno.writeTextFile(defUrl.pathname, def, { create: true }); |