Skip to content

Commit

Permalink
Fix esm build (v2.0.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
gigobyte committed Jan 1, 2024
1 parent 389f473 commit b5ba412
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "purify-ts",
"version": "2.0.2",
"version": "2.0.3",
"description": "Functional programming standard library for TypeScript ",
"repository": "https://github.com/gigobyte/purify.git",
"author": "gigobyte <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Sidebar extends React.Component {
<Container>
<Header>
<HeaderTitle to="/">Purify</HeaderTitle>
<HeaderTitleVersion>v2.0.2</HeaderTitleVersion>
<HeaderTitleVersion>v2.0.3</HeaderTitleVersion>
<HamburgerMenu
onClick={this.toggleMenu}
opened={this.state.isMenuShown}
Expand Down
2 changes: 1 addition & 1 deletion site/src/pages/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Changelog = (props) => (
<div>
<h1>Choose version:</h1>
<VersionContainer>
<VersionStatic>1.0.0 - 2.0.2</VersionStatic>
<VersionStatic>1.0.0 - 2.0.3</VersionStatic>
<Description>
Since v1 purify follows semantic versioning, you can check out all
releases on{' '}
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"target": "es2020",
"lib": ["es2020"],
"module": "nodenext",
"moduleResolution": "nodenext",
"module": "esnext",
"outDir": "lib/esm",
"esModuleInterop": true
},
Expand Down

0 comments on commit b5ba412

Please sign in to comment.