You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
Describe the bug
If the output filename includes a directory - subdir/output.js - it is ignored, and the file written to the current directory
To Reproduce
Enter subdir/output.js in output file config.
Expected behavior
FIle and sourcemap should be put in subdir.
Desktop (please complete the following information):
Deno version 1.6.2
denopack version 0.10.0
Additional context emitFiles.ts seems to be confusing the dir and file options. dir is for code splitting chunks, and isn't used for single build file. This bit of code needs rewriting.
The text was updated successfully, but these errors were encountered:
Describe the bug
If the output filename includes a directory -
subdir/output.js
- it is ignored, and the file written to the current directoryTo Reproduce
Enter
subdir/output.js
in output file config.Expected behavior
FIle and sourcemap should be put in
subdir
.Desktop (please complete the following information):
Additional context
emitFiles.ts
seems to be confusing thedir
andfile
options.dir
is for code splitting chunks, and isn't used for single build file. This bit of code needs rewriting.The text was updated successfully, but these errors were encountered: