Skip to content

Commit

Permalink
AL: add async and base as entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
adalundhe committed Feb 28, 2024
1 parent a155623 commit 2b8c9ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "delta-state",
"version": "1.9.2",
"version": "1.9.3",
"description": "A modern version of the Delta state manager - written for TS and with the use of React Hooks.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { defineConfig } from 'tsup'

export default defineConfig({
entry: [
'src/index.ts'
'src/index.ts',
'src/async/index.ts',
'src/base/index.ts'
],
dts: true,
outDir: 'dist',
Expand Down

0 comments on commit 2b8c9ee

Please sign in to comment.