Skip to content

Commit

Permalink
v72
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Mar 22, 2022
1 parent f2cfe99 commit a80087a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## v72

- Support `jsx-runtime` with query: `https://esm.sh/react?pin=v72/jsx-runtime` -> `https://esm.sh/react/jsx-runtime?pin=v72`
- Support pure types package (close [#284](https://github.com/esm-dev/esm.sh/issues/284))

## v71

- Fix version resolving of dts transformer (close [#274](https://github.com/esm-dev/esm.sh/issues/274))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ import unescape from "https://esm.sh/lodash/unescape?no-check"
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=v71"
import React from "https://esm.sh/[email protected]?pin=v72"
```

## Global CDN
Expand Down
2 changes: 1 addition & 1 deletion server/consts.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package server

// ems.sh version
const VERSION = 71
const VERSION = 72

const (
pkgCacheTimeout = 10 * 60 // 10 minutes
Expand Down

0 comments on commit a80087a

Please sign in to comment.