-
-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: migrate to TSUp * chore: fix build
- Loading branch information
1 parent
081a228
commit 15d4af9
Showing
18 changed files
with
217 additions
and
999 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// @ts-check | ||
|
||
import { defineConfig } from 'tsup' | ||
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js' | ||
|
||
export default defineConfig([ | ||
modernConfig({ entry: ['src/*.ts'] }), | ||
legacyConfig({ entry: ['src/*.ts'] }), | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// @ts-check | ||
|
||
import { defineConfig } from 'tsup' | ||
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js' | ||
|
||
export default defineConfig([ | ||
modernConfig({ entry: ['src/*.ts', 'src/*.tsx'] }), | ||
legacyConfig({ entry: ['src/*.ts', 'src/*.tsx'] }), | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// @ts-check | ||
|
||
import { defineConfig } from 'tsup' | ||
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js' | ||
|
||
export default defineConfig([ | ||
modernConfig({ entry: ['src/*.ts'] }), | ||
legacyConfig({ entry: ['src/*.ts'] }), | ||
]) |
Oops, something went wrong.