From 7eb4e921db997ef28f14cbefd2de58f80648507d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Pallar=C3=A9s?= Date: Wed, 5 Jul 2023 11:08:21 +0200 Subject: [PATCH] fix(console): exports are misconfigured in the ui package (#3255) The `package.json` exports for the `@wingconsole/ui` package point to non-existing files. --- apps/wing-console/console/ui/package.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/wing-console/console/ui/package.json b/apps/wing-console/console/ui/package.json index 9164008c47f..0f43cc9c819 100644 --- a/apps/wing-console/console/ui/package.json +++ b/apps/wing-console/console/ui/package.json @@ -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", @@ -80,4 +84,4 @@ "vitest": "^0.31.4", "webpack": "^5.86.0" } -} \ No newline at end of file +}