diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-09 17:35:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-09 21:35:41 +0000 |
| commit | 560ad0331bf99a2564f53201cd086ff902901bfe (patch) | |
| tree | aa7b250366c62e7552793d954fabbfe6b47b80f4 /tests/specs/run/node_prefix_missing/main.ts | |
| parent | aadcf3346c25ed9d880c2bfc43b62aa075ea6126 (diff) | |
fix(node/byonm): do not accidentally resolve bare node built-ins (#25543)
This was accidentally enabled in byonm, but it requires the
`--unstable-bare-node-builtins` flag.
Closes #25358
Diffstat (limited to 'tests/specs/run/node_prefix_missing/main.ts')
| -rw-r--r-- | tests/specs/run/node_prefix_missing/main.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/run/node_prefix_missing/main.ts b/tests/specs/run/node_prefix_missing/main.ts new file mode 100644 index 000000000..c5c1885a2 --- /dev/null +++ b/tests/specs/run/node_prefix_missing/main.ts @@ -0,0 +1,3 @@ +import fs from "fs"; + +console.log(fs.writeFile); |
