Releases: cometkim/unicode-segmenter
[email protected]
Patch Changes
-
168319f: Reduce the production bundle size
Previously I did unescape
"\u{1F680}"
to"🚀"
in the Unicode table. Since extra characters are required to escape, it reduces the output size.However, escape sequences compress better. So leaving the build output as is makes more sense for production.
[email protected]
[email protected]
[email protected]
Patch Changes
-
973d645: Add index entry
And good old
"main"
entry
[email protected]
Patch Changes
-
3b889e6: Fix TypeScript module resoluition out of
"Node16"
and"NodeNext"
.Lifted up build artifact to root, so make module resolutions to be much polite with ohter modes.
-
c68df9c: Override package's defualt type to
"commonjs"
in publishConfigSince it is still necessary for TypeScript projects.
(See microsoft/TypeScript#54523)It doesn't actually affects module resolution as we have explicit entries for each modules.
Just workaround.
[email protected]
Minor Changes
- ac4c9ba: Initial release