Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Releases: Tsukina-7mochi/esbuild-plugin-cache-deno

Release v1.0.2

29 May 14:11
Compare
Choose a tag to compare

Updated dependencies

Full Changelog: v1.0.1...v1.0.2

Release v1.0.1

29 May 14:08
Compare
Choose a tag to compare

[release patch] Updated dependencies

  • Updated esbuild and std
  • Replaced SHA256 in std/hash/mod.ts into Web Crypto in std/crypto

Full Changelog: v1.0.0...v1.0.1

Release v1.0.0

29 May 12:36
d6e761c
Compare
Choose a tag to compare

[release major] Using the cache system of Deno

Using the cache system of Deno

What's Changed

New Contributors

Full Changelog: v0.3.2...v1.0.0

Release v0.3.2

10 May 05:30
Compare
Choose a tag to compare

[release patch] Updated dependencies

Full Changelog: v0.3.1...v0.3.2

Release v0.3.1

25 Apr 09:42
Compare
Choose a tag to compare

Updated dependencies

Release v0.3.0

17 Apr 13:28
Compare
Choose a tag to compare

In previous versions, the loader was undefined by default. This caused some errors when loading remote files. Instead, we defined a default loader for js, jsx, ts, tsx, css, json and text files.

Release v0.2.1

17 Apr 10:41
Compare
Choose a tag to compare

Updated esbuild

Release v0.2.0

14 Apr 15:18
Compare
Choose a tag to compare

Added functionality to resolve imports based on importmap

Importmap support

Importmaps are now supported so that we can resolve import using them like:

esbuildCachePlugin({
  directory: cachePath,
  importmap: {
      imports: {
          "preact": "https://esm.sh/preact@10.13.2"
      }
  },
}),

and then with the script

import * as preact from "preact";

Other changes

  • Updated dependencies
    • Updated esbuild

v0.1.4: Update dependencies

03 Apr 11:01
Compare
Choose a tag to compare
  • Updated esbuild to 0.17.15

v0.1.3: Update dependencies

27 Mar 10:14
Compare
Choose a tag to compare
  • Updated esbuild to 0.17.14