From 31da30b982df8eee99bf3ac3ae3c60cff86bad91 Mon Sep 17 00:00:00 2001 From: Lauris Skraucis Date: Fri, 31 Oct 2025 15:25:26 +0100 Subject: [PATCH] fix: specify atoms package.json repository (#24828) --- .github/workflows/changesets.yml | 1 + packages/platform/atoms/package.json | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index 8f72addccb..685646b154 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -26,6 +26,7 @@ jobs: with: node-version: "20.17.0" registry-url: "https://registry.npmjs.org" + always-auth: false - name: Setup node, yarn and install dependencies uses: ./.github/actions/yarn-install - name: Install npm at version supporting OIDC diff --git a/packages/platform/atoms/package.json b/packages/platform/atoms/package.json index 92e0bf8f79..1b346e7a24 100644 --- a/packages/platform/atoms/package.json +++ b/packages/platform/atoms/package.json @@ -5,6 +5,10 @@ "description": "Customizable UI components to integrate scheduling into your product.", "authors": "Cal.com, Inc.", "version": "1.12.1", + "repository": { + "type": "git", + "url": "https://github.com/calcom/cal.com" + }, "scripts": { "dev": "yarn vite build --watch & npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify --watch", "build": "NODE_OPTIONS='--max_old_space_size=12288' rm -rf dist && yarn vite build && npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify",