From 53c1bc45d60c564276609dd980e9f255cf41ebda Mon Sep 17 00:00:00 2001 From: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Date: Fri, 12 Apr 2024 16:16:07 +0300 Subject: [PATCH] fix: atoms package types were not exported (#14546) --- packages/platform/atoms/package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/platform/atoms/package.json b/packages/platform/atoms/package.json index 679cfd65fb..ce98da1fa3 100644 --- a/packages/platform/atoms/package.json +++ b/packages/platform/atoms/package.json @@ -4,7 +4,7 @@ "type": "module", "description": "Customizable UI components to integrate scheduling into your product.", "authors": "Cal.com, Inc.", - "version": "1.0.13", + "version": "1.0.14", "scripts": { "dev": "yarn vite build --watch & npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify --watch", "build": "yarn vite build && npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify", @@ -35,14 +35,16 @@ "exports": { ".": { "require": "./dist/cal-atoms.umd.cjs", - "import": "./dist/cal-atoms.js" + "import": "./dist/cal-atoms.js", + "types": "./dist/index.d.ts" }, "./monorepo": { "import": "./monorepo.ts", "require": "./monorepo.ts" }, "./globals.min.css": "./globals.min.css", - "./dist/index.ts": "./index.ts" + "./dist/index.ts": "./index.ts", + "./dist/index.d.ts": "./dist/index.d.ts" }, "types": "./dist/index.d.ts", "dependencies": {