From 722417f20e38ff209fc48f2c3f7b94a9ff0ba45b Mon Sep 17 00:00:00 2001 From: X Date: Tue, 7 Sep 2021 22:53:24 +0800 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f56b557..6340c720e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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))