diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-23 01:42:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 02:42:26 +0200 |
commit | 8a7ed17ea29a5cc3f1fbf46cc848e3dad5b72f89 (patch) | |
tree | 28aa9ef2254738841de77b788001c9400a4004cb /tests/testdata/compile/napi/main.ts | |
parent | 3f8efe5289d88097ab49e7a8fcda763c2823376b (diff) |
Revert "fix(cli): add NAPI support in standalone mode (#24642)" (#24682)
This reverts commit 4e8f5875bc59ddfb84c8b0b26071a547b49823a9.
Reverting because, it caused a failure during v1.45.3 publish:
https://github.com/denoland/deno/actions/runs/10048730693/job/27773718095
CC @Mutefish0
Diffstat (limited to 'tests/testdata/compile/napi/main.ts')
-rw-r--r-- | tests/testdata/compile/napi/main.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/testdata/compile/napi/main.ts b/tests/testdata/compile/napi/main.ts deleted file mode 100644 index 91e8a0561..000000000 --- a/tests/testdata/compile/napi/main.ts +++ /dev/null @@ -1,7 +0,0 @@ -import Module from "node:module"; - -const mod = new Module(""); - -const filepath = Deno.args[0]; - -console.log(mod.require(filepath)); |