Skip to content

Commit 5264f7e

Browse files
committed
fix
1 parent 56f6ee3 commit 5264f7e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

bun.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"@biomejs/biome": "2.3.7",
88
"@changesets/changelog-github": "^0.5.1",
99
"@changesets/cli": "2.29.7",
10-
"@changesets/get-github-info": "0.6.0",
1110
"@rollup/plugin-babel": "^6.1.0",
1211
"@types/node": "^24.7.2",
1312
"@typescript-eslint/parser": "^8.47.0",

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@
1313
"license": "MIT",
1414
"sideEffects": false,
1515
"exports": {
16-
".": "./dist/index.js",
16+
".": "./dist/index.mjs",
1717
"./package.json": "./package.json"
1818
},
19-
"main": "./dist/index.js",
20-
"module": "./dist/index.js",
21-
"types": "./dist/index.d.ts",
19+
"main": "./dist/index.mjs",
20+
"module": "./dist/index.mjs",
21+
"types": "./dist/index.d.mts",
22+
"files": [
23+
"dist"
24+
],
2225
"scripts": {
2326
"brl": "sh tooling/brl.sh",
2427
"build": "tsdown --config tooling/tsdown.config.ts",

tooling/tsdown.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default defineConfig({
1010
exports: true,
1111
sourcemap: true,
1212
dts: true,
13-
outExtensions: () => ({ js: '.js', dts: '.d.ts' }),
1413
plugins: HAS_REACT
1514
? [
1615
pluginBabel({

0 commit comments

Comments
 (0)