diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-10-06 23:51:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 09:21:43 +0530 |
commit | c27234888f3d93aee842e8b30912512867071cb9 (patch) | |
tree | 92581450e566382045db97372ec2ac3dd7d83a05 /tools/napi/generate_link_win.js | |
parent | 5a1ea586b4d99a8e3028d51899b921acca484648 (diff) |
fix(napi): move napi symbols file (#16179)
The current location was causing failures during v1.26.1 publication.
<!--
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_link_win.js')
-rwxr-xr-x | tools/napi/generate_link_win.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/napi/generate_link_win.js b/tools/napi/generate_link_win.js index a0bda6a42..7d16f81c3 100755 --- a/tools/napi/generate_link_win.js +++ b/tools/napi/generate_link_win.js @@ -1,7 +1,9 @@ #!/usr/bin/env -S deno run --unstable --allow-read --allow-write // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -import exports from "./symbol_exports.json" assert { type: "json" }; +import exports from "../../cli/napi_sym/symbol_exports.json" assert { + type: "json", +}; let def = "LIBRARY\nEXPORTS\n"; for (const symbol of exports.symbols) { |