Skip to content

Commit

Permalink
fix(console): exports are misconfigured in the ui package (#3255)
Browse files Browse the repository at this point in the history
The `package.json` exports for the `@wingconsole/ui` package point to non-existing files.
  • Loading branch information
skyrpex authored Jul 5, 2023
1 parent 562c596 commit 7eb4e92
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/wing-console/console/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
"name": "@wingconsole/ui",
"license": "SEE LICENSE IN LICENSE.md",
"version": "0.0.0",
"type": "module",
"exports": {
".": "./src/index.ts",
"./tailwind-plugin.cjs": "./tailwind-plugin.cjs"
},
"types": "./src/index.ts",
"publishConfig": {
"exports": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./tailwind-plugin.cjs": "./tailwind-plugin.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
Expand Down Expand Up @@ -80,4 +84,4 @@
"vitest": "^0.31.4",
"webpack": "^5.86.0"
}
}
}

0 comments on commit 7eb4e92

Please sign in to comment.