From 3f8efe5289d88097ab49e7a8fcda763c2823376b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 23 Jul 2024 01:01:31 +0100 Subject: 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 --- tools/napi/generate_symbols_lists.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/napi/generate_symbols_lists.js') 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 }); -- cgit v1.2.3