Skip to content

Commit

Permalink
v99
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Nov 19, 2022
1 parent 865e8af commit 27496e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## v99

- Improve CDN cache performance, now you can get faster response time of `.d.ts`, `.wasm` and other static files.
- Remove `?deps` purge (close [#422](https://github.com/ije/esm.sh/issues/420))
- Remove `?export` query of sub build task
- Upgrade `deno/std` to **0.165.0**.

## v98

- Add **tree-shaking** support for es modules
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ import unescape from "https://esm.sh/lodash/unescape?no-dts"
Since we update esm.sh server frequently, sometime we may break packages that work fine previously by mistake, the server will rebuild all modules when the patch pushed. To avoid this, you can **pin** the build version by the `?pin=BUILD_VERSON` query. This will give you an **immutable** cached module.

```javascript
import React from "https://esm.sh/[email protected]?pin=v98"
import React from "https://esm.sh/[email protected]?pin=v99"
```

## Global CDN
Expand Down
4 changes: 2 additions & 2 deletions server/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package server

const (
// esm.sh build version
VERSION = 98
VERSION = 99
nodejsMinVersion = 16
denoStdVersion = "0.162.0"
denoStdVersion = "0.165.0"
nodejsLatestLTS = "16.18.1"
nodeTypesVersion = "16.18.3"
)
Expand Down

0 comments on commit 27496e5

Please sign in to comment.