v0.0.6
0.0.6 (2025-07-27)
⭐ New Features
added ability to just pass globs to generate the entries list (f583b35)
improved debug option (it can now be a function) (e0b2714)
Switched to node's inspect to log a bit deeper, but not too deep or it's too
long.
no longer empties outdir in development (1dba074)
This is because it causes dev builds that depend on the package using the config
to break since the files are first removed. This way they are just "updated".
This requires accessing { mode }. If the config needs mode itself it must do:
export default ({ mode }) => defineConfig(...)({ mode })
added ability to override config via third parameter (b0e5457)
🐛 Fixes
removed shell: true from spawn command to fix DEP0190 warning (c4c8ea2)
This should have never been here anyways as it's not really needed
improved argument construction to avoid TS5042 warning (8468c6a)
This was happening becase an extra empty arg was being interpreted as a file I
think, and the -p option cannot be mixed with "source files" when using tsc.
fixed type error (160e175)
Ever once in a while there is a weird mismatch between the imported type of
Plugin from vite and what it can actually take in :/