Skip to content

Commit

Permalink
Update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Sep 7, 2021
1 parent 5f24469 commit 722417f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

## v48

- Improve **cjs-lexer** service to handle a edge case is shown below:
```js
// cjs

function debounce() {};
debounce.debounce = debounce;
module.exports = debounce;
```
esm output:
```js
// esm

export { debounce } // this was missed
export default debounce
```
- Ignore `?target` in Deno (fix [#109](https://github.com/postui/esm.sh/issues/109))
- Add **Storage Interface** to store data to anywhere (currently only support [postdb](https://github.com/postui/postdb) + local FS)

## v47

- Improve dts transformer to use cdn domain (fix [#104](https://github.com/postui/esm.sh/issues/104))
Expand Down

0 comments on commit 722417f

Please sign in to comment.