Skip to content

Commit

Permalink
fix: wrong module exports (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
edodusi authored Dec 27, 2024
1 parent c1b4545 commit 908ad31
Show file tree
Hide file tree
Showing 3 changed files with 330 additions and 25 deletions.
13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,8 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./rsc": {
"types": "./dist/rsc/index.d.ts",
"import": "./dist/rsc.mjs",
"require": "./dist/rsc.js"
"import": "./dist/storyblok-vue.mjs",
"require": "./dist/storyblok-vue.js"
}
},
"main": "./dist/storyblok-vue.js",
Expand All @@ -35,7 +30,7 @@
"dev": "vite build --watch",
"playground": "pnpm run --filter ./playground/vue dev",
"test": "pnpm run cy:components",
"build": "vite build ",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cy:run": "cypress run",
Expand All @@ -62,7 +57,7 @@
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite": "^6.0.6",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8",
Expand Down
Loading

0 comments on commit 908ad31

Please sign in to comment.