diff options
author | Hirotaka Tagawa / wafuwafu13 <jaruwafu@gmail.com> | 2023-06-02 07:05:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 15:05:32 +0900 |
commit | 0104741d6fe7135565038f1f61e84d852bf2225d (patch) | |
tree | 6e979c31e78b24c0cc9df69f7a27b5c6b65f7051 /tools | |
parent | c908088a039b8e1232941850c75471bab162313a (diff) |
chore(node_compat): fix path strings generated by `setup.ts` (#19347)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/node_compat/TODO.md | 2 | ||||
-rwxr-xr-x | tools/node_compat/setup.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/node_compat/TODO.md b/tools/node_compat/TODO.md index ff8409a92..cb0da2d8a 100644 --- a/tools/node_compat/TODO.md +++ b/tools/node_compat/TODO.md @@ -1,7 +1,7 @@ <!-- deno-fmt-ignore-file --> # Remaining Node Tests -NOTE: This file should not be manually edited. Please edit 'cli/tests/node_compat/config.json' and run 'tools/node_compat/setup.ts' instead. +NOTE: This file should not be manually edited. Please edit `cli/tests/node_compat/config.json` and run `deno task setup` in `tools/node_compat` dir instead. Total: 2934 diff --git a/tools/node_compat/setup.ts b/tools/node_compat/setup.ts index 5bd5a5ba5..132acfe11 100755 --- a/tools/node_compat/setup.ts +++ b/tools/node_compat/setup.ts @@ -76,7 +76,7 @@ async function updateToDo() { await file.write(encoder.encode(`<!-- deno-fmt-ignore-file --> # Remaining Node Tests -NOTE: This file should not be manually edited. Please edit 'cli/tests/node_compat/config.json' and run 'tools/node_compat/setup.ts' instead. +NOTE: This file should not be manually edited. Please edit \`cli/tests/node_compat/config.json\` and run \`deno task setup\` in \`tools/node_compat\` dir instead. Total: ${missingTests.length} @@ -142,7 +142,7 @@ async function copyTests() { // Copyright Joyent and Node contributors. All rights reserved. MIT license. // Taken from Node ${NODE_VERSION} -// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually +// This file is automatically generated by \`tools/node_compat/setup.ts\`. Do not modify this file manually. `), ); |