This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
Releases: denofn/denopack
Releases · denofn/denopack
0.10.0
0.9.0
0.8.0 - pluginServe
0.7.1
HTML and CSS assets
0.6.0 - 2020-08-18
Added
- Plugins for html and css assets
- React template recipe
- Plugins are now also exported with
export default
Changed
- Updated Rollup to v2.26.3
- Toplevel mod.ts now re-exports rollup from deps.ts
- Removed pluginCacheResolver
0.5.0 - code splitting
0.5.0 - 2020-08-13
Changed
- Directory loading to support dynamic imports and code splitting
- BREAKING: pluginTerserTransform is now an actual transform plugin, not an output plugin
- Sourcemapping identifiers are now appended in CLI, not in pluginTerserTransform
0.4.0: Watch mode and incremental compile
🦕📦 denopack is delighted to announce two new key features 🎉
- Builds are now able to run even faster with incremental compilation! Rollup caches can now be loaded and stored from the denopack CLI
- With incremental compile also comes watch mode! Although this feature is currently incompatible with Deno.compile related plugins and hooks, denopack provides enough alternatives that are almost equally as fast. Watch mode uses a runtime cache if not used together with incremental compile
To enable incremental compilation add the --cache <pathToCache.json>
option to store and load the cache from a json file. To enable watch mode, use --watch <pathToFileOrDir>
to point to a file or path to look for changes.