diff --git a/.changeset/config.json b/.changeset/config.json index 1e183e9946..89c3db9ed5 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,7 +7,7 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": ["@calcom/platform-libraries", "@calcom/features", "@calcom/lib", "@calcom/prisma"], + "ignore": ["@calcom/platform-libraries"], "privatePackages": { "version": false, "tag": false diff --git a/.changeset/dark-geckos-wink.md b/.changeset/dark-geckos-wink.md new file mode 100644 index 0000000000..8e978c3057 --- /dev/null +++ b/.changeset/dark-geckos-wink.md @@ -0,0 +1,5 @@ +--- +"@calcom/atoms": patch +--- + +test by updating changelog diff --git a/apps/api/package.json b/apps/api/package.json index 252bd4f177..52103cad2c 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "description": "", "main": "index.js", + "private": true, "scripts": { "dev": "node ./index.js" }, diff --git a/apps/api/v2/package.json b/apps/api/v2/package.json index 7b6d201d5f..47d0b38df4 100644 --- a/apps/api/v2/package.json +++ b/apps/api/v2/package.json @@ -4,6 +4,7 @@ "description": "Platform API for Cal.com", "author": "Cal.com Inc.", "license": "UNLICENSED", + "private": true, "scripts": { "build": "yarn dev:build && nest build", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", diff --git a/packages/platform/atoms/README.md b/packages/platform/atoms/README.md index c3b19eaf89..3d637498d7 100644 --- a/packages/platform/atoms/README.md +++ b/packages/platform/atoms/README.md @@ -1,7 +1,7 @@ Customizable UI components to integrate scheduling into your services. ### Support -Currently supports React 18 and Next 14 while Next 15 is experimental. +Currently supports React 18, React 19, Next 14 and Next 15. ### Changelog 1. Changelog can be viewed [here](https://github.com/calcom/cal.com/blob/main/packages/platform/atoms/CHANGELOG.md). diff --git a/packages/platform/atoms/package.json b/packages/platform/atoms/package.json index 39d7189648..4f6c3b5406 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.105", + "version": "1.0.106", "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=16384' rm -rf dist && yarn vite build && npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify && mkdir ./dist/packages/prisma-client && cp -rf ../../../node_modules/.prisma/client/*.d.ts ./dist/packages/prisma-client", diff --git a/packages/platform/constants/package.json b/packages/platform/constants/package.json index f4072595cf..bb3c3ff3b8 100644 --- a/packages/platform/constants/package.json +++ b/packages/platform/constants/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "private": true, "scripts": { "build": "tsc --build --force tsconfig.json", "build:watch": "tsc --build --force ./tsconfig.json --watch", diff --git a/packages/platform/enums/package.json b/packages/platform/enums/package.json index 39b24c11a1..71982a2a76 100644 --- a/packages/platform/enums/package.json +++ b/packages/platform/enums/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "main": "./dist/index.ts", "types": "./dist/index.ts", + "private": true, "exports": { ".": { "require": "./dist/index.js", diff --git a/packages/platform/types/package.json b/packages/platform/types/package.json index 466c1501fe..92b36ec095 100644 --- a/packages/platform/types/package.json +++ b/packages/platform/types/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "main": "./dist/index.js", "types": "./dist/index.js", + "private": true, "scripts": { "build": "yarn clean && tsc --build --force tsconfig.json", "clean": "rm -rf ./dist", diff --git a/packages/platform/utils/package.json b/packages/platform/utils/package.json index 256d342920..0faf50eddc 100644 --- a/packages/platform/utils/package.json +++ b/packages/platform/utils/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "private": true, "scripts": { "test": "jest ./tests", "build": "tsc --build --force tsconfig.json",