-
Notifications
You must be signed in to change notification settings - Fork 451
chore(repo): Update rolldown and tsdown #8207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2912035
9f64178
357160b
b4057e4
90dcf5e
c7ceb59
e4c9119
3e16d1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| export { TokenCache } from './types'; | ||
| export type { TokenCache } from './types'; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This prevents an error where |
||
|
|
||
| export { MemoryTokenCache } from './MemoryTokenCache'; | ||
| export { ClientResourceCache, EnvironmentResourceCache, SessionJWTCache } from './ResourceCache'; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,8 +29,8 @@ | |
| "default": "./dist/index.mjs" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/index.d.ts", | ||
| "default": "./dist/index.js" | ||
| "types": "./dist/index.d.cts", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do think it's somewhat strange that tsdown emits both |
||
| "default": "./dist/index.cjs" | ||
| } | ||
| }, | ||
| "./internal": { | ||
|
|
@@ -39,8 +39,8 @@ | |
| "default": "./dist/internal.mjs" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/internal.d.ts", | ||
| "default": "./dist/internal.js" | ||
| "types": "./dist/internal.d.cts", | ||
| "default": "./dist/internal.cjs" | ||
| } | ||
| }, | ||
| "./errors": { | ||
|
|
@@ -49,8 +49,8 @@ | |
| "default": "./dist/errors.mjs" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/errors.d.ts", | ||
| "default": "./dist/errors.js" | ||
| "types": "./dist/errors.d.cts", | ||
| "default": "./dist/errors.cjs" | ||
| } | ||
| }, | ||
| "./experimental": { | ||
|
|
@@ -59,8 +59,8 @@ | |
| "default": "./dist/experimental.mjs" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/experimental.d.ts", | ||
| "default": "./dist/experimental.js" | ||
| "types": "./dist/experimental.d.cts", | ||
| "default": "./dist/experimental.cjs" | ||
| } | ||
| }, | ||
| "./legacy": { | ||
|
|
@@ -69,21 +69,21 @@ | |
| "default": "./dist/legacy.mjs" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/legacy.d.ts", | ||
| "default": "./dist/legacy.js" | ||
| "types": "./dist/legacy.d.cts", | ||
| "default": "./dist/legacy.cjs" | ||
| } | ||
| }, | ||
| "./types": { | ||
| "import": { | ||
| "types": "./dist/types.d.mts" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/types.d.ts" | ||
| "types": "./dist/types.d.cts" | ||
| } | ||
| }, | ||
| "./package.json": "./package.json" | ||
| }, | ||
| "main": "./dist/index.js", | ||
| "main": "./dist/index.cjs", | ||
| "files": [ | ||
| "dist" | ||
| ], | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was added to match the
uiimport below.