Skip to content

Commit

Permalink
fix(tsup): remove entry for experimental subpath (#272)
Browse files Browse the repository at this point in the history
# Overview

<!--
    A clear and concise description of what this pr is about.
 -->

I removed entry for experimental subpath

## PR Checklist

- [x] I did below actions if need

1. I read the [Contributing
Guide](https://github.com/suspensive/react/blob/main/CONTRIBUTING.md)
2. I added documents and tests.
  • Loading branch information
manudeli authored Oct 29, 2023
1 parent ebcf138 commit 056c9fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/swift-mayflies-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@suspensive/react": patch
"@suspensive/react-query": patch
"@suspensive/react-await": patch
---

fix(tsup): remove entry of experimental
2 changes: 1 addition & 1 deletion configs/tsup/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Options } from 'tsup'
export const options: Options = {
banner: { js: '"use client"' },
format: ['cjs', 'esm'],
entry: ['{src,src/experimental}/*.{ts,tsx}', '!**/*.{spec,test,test-d}.*'],
entry: ['src/*.{ts,tsx}', '!**/*.{spec,test,test-d}.*'],
sourcemap: true,
dts: true,
splitting: false,
Expand Down

0 comments on commit 056c9fc

Please sign in to comment.