diff --git a/.changeset/short-clowns-admire.md b/.changeset/short-clowns-admire.md new file mode 100644 index 0000000000..457a4bfcd1 --- /dev/null +++ b/.changeset/short-clowns-admire.md @@ -0,0 +1,5 @@ +--- +"@calcom/atoms": patch +--- + +test log can ignore diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index de0f68058f..e2466ec3e5 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -15,7 +15,7 @@ jobs: contents: write # to create release by changesets/action below pull-requests: write # to create pull request by changesets/action below name: Release - runs-on: ubuntu-latest + runs-on: buildjet-4vcpu-ubuntu-2204 steps: - name: Checkout Repo uses: actions/checkout@v4 diff --git a/package.json b/package.json index f6f599ddb9..ab7dfd8ccc 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "docker-stop-api": "docker ps --filter 'ancestor=cal-api' -q | xargs docker stop", "changesets-add": "yarn changeset add", "changesets-version": "yarn changeset version", - "changesets-release": "NODE_OPTIONS='--max_old_space_size=8192' turbo run build --filter=@calcom/atoms && yarn changeset publish" + "changesets-release": "NODE_OPTIONS='--max_old_space_size=12288' turbo run build --filter=@calcom/atoms && yarn changeset publish" }, "devDependencies": { "@changesets/changelog-github": "^0.5.1", diff --git a/packages/platform/atoms/CHANGELOG.md b/packages/platform/atoms/CHANGELOG.md index 9108366143..26b3d8c657 100644 --- a/packages/platform/atoms/CHANGELOG.md +++ b/packages/platform/atoms/CHANGELOG.md @@ -1,5 +1,3 @@ -## 1.0.63 - ## 1.0.108 ### Patch Changes @@ -14,6 +12,7 @@ - [#21864](https://github.com/calcom/cal.com/pull/21864) [`540bf86`](https://github.com/calcom/cal.com/commit/540bf868b5b60a98d9d3aeb565e2089f15c3dfd3) Thanks [@supalarry](https://github.com/supalarry)! - fix saving event type settings +## 1.0.63 1. 💥 BREAKING - `useGetBooking` hook has been renamed to `useBooking` hook and `useGetBookings` hook to `useBookings` and the data returned has different structure. Here is example response from `useBooking`: diff --git a/packages/platform/atoms/package.json b/packages/platform/atoms/package.json index 4d81d10a34..c3314ca451 100644 --- a/packages/platform/atoms/package.json +++ b/packages/platform/atoms/package.json @@ -4,11 +4,11 @@ "type": "module", "description": "Customizable UI components to integrate scheduling into your product.", "authors": "Cal.com, Inc.", - "version": "1.0.108", + "version": "1.0.109", "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", - "publish": "yarn build && npm publish --access public", + "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 && mkdir ./dist/packages/prisma-client && cp -rf ../../../node_modules/.prisma/client/*.d.ts ./dist/packages/prisma-client", + "publish-npm": "yarn build && npm publish --access public", "test": "jest" }, "devDependencies": {