mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
a96844118c
If a symlink within the `node_modules` directory lies outside that directory, it will now warn and inline the file. For directories, it will just warn for now. Probably fixes #19251 (I'm still unable to reproduce).
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
import { getValue, setValue } from "npm:@denotest/esm-basic";
|
|
|
|
setValue(4);
|
|
|
|
console.log(getValue());
|
|
console.log(Deno.readTextFileSync("./node_modules/test.txt"));
|