🚀 Enhancements
- zip: ⚠️ Add
includeSources
and renameignoredSources
toexcludeSources
(#378)
🩹 Fixes
- Generate missing sourcemap in
wxt:unimport
plugin (#381) - ⚠️ Move browser constants to
import.meta.env
(#380) - Enable inline sourcemaps by default during development (#382)
📖 Documentation
- Fix typo (f9718a1)
🏡 Chore
- Update contributor docs (eb758bd)
⚠️ Breaking Changes
Renamed zip.ignoredSources
to zip.excludeSources
in #378
Renamed undocumented constants for detecting the build config at runtime in #380. Now documented here: https://wxt.dev/guide/multiple-browsers.html#runtime
__BROWSER__
→import.meta.env.BROWSER
__COMMAND__
→import.meta.env.COMMAND
__MANIFEST_VERSION__
→import.meta.env.MANIFEST_VERSION
__IS_CHROME__
→import.meta.env.CHROME
__IS_FIREFOX__
→import.meta.env.FIREFOX
__IS_SAFARI__
→import.meta.env.SAFARI
__IS_EDGE__
→import.meta.env.EDGE
__IS_OPERA__
→import.meta.env.OPERA
❤️ Contributors
- Nenad Novaković (@dvlden)