This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Releases: Tsukina-7mochi/esbuild-plugin-cache-deno
Releases · Tsukina-7mochi/esbuild-plugin-cache-deno
Release v1.0.2
Updated dependencies
Full Changelog: v1.0.1...v1.0.2
Release v1.0.1
[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
[release major] Using the cache system of Deno
Using the cache system of Deno
What's Changed
- Using the cache system of Deno by @Tsukina-7mochi in #1
New Contributors
- @Tsukina-7mochi made their first contribution in #1
Full Changelog: v0.3.2...v1.0.0
Release v0.3.2
[release patch] Updated dependencies
Full Changelog: v0.3.1...v0.3.2
Release v0.3.1
Updated dependencies
Release v0.3.0
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
Updated esbuild
Release v0.2.0
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
- Updated esbuild to
0.17.15
v0.1.3: Update dependencies
- Updated esbuild to
0.17.14