Skip to content

Commit

Permalink
v93
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Sep 4, 2022
1 parent 987d9aa commit 8513142
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## v93

- Fix `@types/react` version (close [#331](https://github.com/ije/esm.sh/issues/331))
- Fix cjs `__esModule` resolving (close [#410](https://github.com/ije/esm.sh/issues/410))
- Fix `postcss-selector-parser` cjs exports (close [#411](https://github.com/ije/esm.sh/issues/411))
- Fix `solid-js/web` of `deno` target
- Upgrade `deno/std` to **0.154.0**

## v92

- Add `stable` channel for UI libraries like react, to avoid multiple copies of runtime by cache
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ deno task npm:remove react react-dom # remove packages
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=v92"
import React from "https://esm.sh/[email protected]?pin=v93"
```

## 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 = 92
VERSION = 93
nodejsMinVersion = 16
denoStdVersion = "0.152.0"
denoStdVersion = "0.154.0"
nodejsLatestLTS = "16.16.0"
nodeTypesVersion = "16.11.45"
)

0 comments on commit 8513142

Please sign in to comment.