Skip to content

Commit 4e8d876

Browse files
committed
chore: rename some tsx modules to ts
1 parent bace68a commit 4e8d876

File tree

6 files changed

+3
-4
lines changed

6 files changed

+3
-4
lines changed

bun.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,12 @@
5959
"browser": {},
6060
"exports": {
6161
".": {
62-
"solid": "./dist/index/index.jsx",
6362
"import": {
6463
"types": "./dist/index/index.d.ts",
6564
"default": "./dist/index/index.js"
6665
}
6766
},
6867
"./plugins": {
69-
"solid": "./dist/plugins/index.jsx",
7068
"import": {
7169
"types": "./dist/plugins/index.d.ts",
7270
"default": "./dist/plugins/index.js"
File renamed without changes.

tsup.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ const generateSolidPresetOptions = (watching: boolean): preset.PresetOptions =>
77
entries: [
88
{
99
// entries with '.tsx' extension will have `solid` export condition generated
10-
entry: "src/index.tsx",
10+
entry: "src/index.ts",
1111
dev_entry: false,
1212
server_entry: false,
1313
},
1414
{
1515
name: "plugins",
16-
entry: "src/plugins/index.tsx",
16+
entry: "src/plugins/index.ts",
1717
dev_entry: false,
1818
server_entry: false,
1919
},

0 commit comments

Comments
 (0)