1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/specs/compile/include_data_files
David Sherret 46b6037644
feat(compile): ability to embed local data files (#26934)
```
> deno compile --allow-read=. --include data-file.txt main.js
```

This only applies to files on the filesystem. For remote modules, that's
going to have to wait for `import ... from "./data.txt" with { "type":
"bytes" }` or whatever it will be.
2024-11-19 16:19:35 -05:00
..
__test__.jsonc feat(compile): ability to embed local data files (#26934) 2024-11-19 16:19:35 -05:00
data-file.txt feat(compile): ability to embed local data files (#26934) 2024-11-19 16:19:35 -05:00
main.js feat(compile): ability to embed local data files (#26934) 2024-11-19 16:19:35 -05:00
non_existent.out feat(compile): ability to embed local data files (#26934) 2024-11-19 16:19:35 -05:00
output.out feat(compile): ability to embed local data files (#26934) 2024-11-19 16:19:35 -05:00