-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: silence tsup exports warning (#114)
Signed-off-by: Jérôme Benoit <[email protected]>
- Loading branch information
1 parent
8d4b707
commit b1cbf04
Showing
8 changed files
with
75 additions
and
99 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 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 |
---|---|---|
|
@@ -2,11 +2,16 @@ | |
"name": "examples", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"packageManager": "[email protected]", | ||
"volta": { | ||
"node": "20.18.0", | ||
"pnpm": "8.15.9" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"all": "pnpm run simple", | ||
"all": "pnpm simple", | ||
"simple": "tsx src/simple.ts", | ||
"dev:simple": "tsx watch src/simple.ts" | ||
"dev:simple": "tsx --watch src/simple.ts" | ||
}, | ||
"license": "ISC", | ||
"devDependencies": { | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* eslint-disable no-console */ | ||
import { Bench } from '../../src'; | ||
|
||
const bench = new Bench({ time: 100 }); | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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