Skip to content

Commit 38fe87a

Browse files
committed
fix package configuration
1 parent 75599b9 commit 38fe87a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "vite-plugin-solid-undestructure",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "Automatically transforms props destructuring in SolidJS components",
55
"type": "module",
6-
"main": "./dist/index.js",
7-
"module": "./dist/index.js",
8-
"types": "./dist/index.d.ts",
6+
"main": "./dist/vite/index.js",
7+
"module": "./dist/vite/index.js",
8+
"types": "./dist/vite/index.d.ts",
99
"exports": {
1010
".": {
11-
"import": "./dist/index.js",
12-
"types": "./dist/index.d.ts"
11+
"import": "./dist/vite/index.js",
12+
"types": "./dist/vite/index.d.ts"
1313
},
1414
"./eslint": {
1515
"import": "./dist/eslint/index.js",
@@ -33,7 +33,7 @@
3333
"scripts": {
3434
"build": "bun build:type && bun build:vite && bun build:eslint",
3535
"build:type": "tsc --declaration --emitDeclarationOnly --outDir dist",
36-
"build:vite": "bun build src/vite/index.ts --minify --packages=external --outfile=dist/index.js",
36+
"build:vite": "bun build src/vite/index.ts --minify --packages=external --outfile=dist/vite/index.js",
3737
"build:eslint": "bun build src/eslint/index.ts --minify --packages=external --outfile=dist/eslint/index.js",
3838
"type": "tsc --noEmit",
3939
"lint": "eslint --cache src",

0 commit comments

Comments
 (0)