summaryrefslogtreecommitdiff
path: root/tests/testdata/compile/napi/main.ts
AgeCommit message (Collapse)Author
2024-07-23Revert "fix(cli): add NAPI support in standalone mode (#24642)" (#24682)Bartek IwaƄczuk
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
2024-07-21fix(cli): add NAPI support in standalone mode (#24642)Ivancing
Currently, importing Node-Addons modules in a standalone binary results in a `missing symbol called` error (https://github.com/denoland/deno/issues/24614). Because the NAPI symbols are not exported in this mode. This PR should fix the issue.