Skip to content

Releases: denofn/denopack

0.10.0

05 Oct 17:26
Compare
Choose a tag to compare

0.10.0 - 2020-10-05

Changed

  • normalize file module specifier to file:// URLs

0.9.0

16 Sep 11:26
Compare
Choose a tag to compare

0.9.0 - 2020-08-22

Added

  • Test fixtures for htmlBundle

Changed

  • Updated dependencies and types to Deno 1.4.0 and Terser 5

Fixed

  • Relative paths in htmlBundle plugin
  • MacOS cache location path
  • Early exit for installer

0.8.0 - pluginServe

25 Aug 22:16
Compare
Choose a tag to compare

0.8.0 - 2020-08-22

Added

  • pluginServe

Changed

  • Added pluginServe to React recipe

0.7.1

22 Aug 17:09
Compare
Choose a tag to compare

0.7.1 - 2020-08-22

Fixed

  • added install.ts to egg.json

0.7.0 - 2020-08-22

Added

  • Change to custom install script

Changed

  • Switched out custom filter function in cssBundle for official Rollup createFilter function

HTML and CSS assets

18 Aug 15:38
Compare
Choose a tag to compare

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

13 Aug 14:20
Compare
Choose a tag to compare

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

11 Aug 01:21
Compare
Choose a tag to compare

🦕📦 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.