Skip to content

Commit 88a2bd3

Browse files
authored
fix: changesets release memory (calcom#22107)
* chore: increase instance size for changesets * test release * Update CHANGELOG.md
1 parent 45caaa5 commit 88a2bd3

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

.changeset/short-clowns-admire.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@calcom/atoms": patch
3+
---
4+
5+
test log can ignore

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write # to create release by changesets/action below
1616
pull-requests: write # to create pull request by changesets/action below
1717
name: Release
18-
runs-on: ubuntu-latest
18+
runs-on: buildjet-4vcpu-ubuntu-2204
1919
steps:
2020
- name: Checkout Repo
2121
uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"docker-stop-api": "docker ps --filter 'ancestor=cal-api' -q | xargs docker stop",
8383
"changesets-add": "yarn changeset add",
8484
"changesets-version": "yarn changeset version",
85-
"changesets-release": "NODE_OPTIONS='--max_old_space_size=8192' turbo run build --filter=@calcom/atoms && yarn changeset publish"
85+
"changesets-release": "NODE_OPTIONS='--max_old_space_size=12288' turbo run build --filter=@calcom/atoms && yarn changeset publish"
8686
},
8787
"devDependencies": {
8888
"@changesets/changelog-github": "^0.5.1",

packages/platform/atoms/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## 1.0.63
2-
31
## 1.0.108
42

53
### Patch Changes
@@ -14,6 +12,7 @@
1412

1513
- [#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
1614

15+
## 1.0.63
1716
1. 💥 BREAKING - `useGetBooking` hook has been renamed to `useBooking` hook and `useGetBookings` hook to `useBookings` and the data returned has different
1817
structure. Here is example response from `useBooking`:
1918

packages/platform/atoms/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"type": "module",
55
"description": "Customizable UI components to integrate scheduling into your product.",
66
"authors": "Cal.com, Inc.",
7-
"version": "1.0.108",
7+
"version": "1.0.109",
88
"scripts": {
99
"dev": "yarn vite build --watch & npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify --watch",
10-
"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",
11-
"publish": "yarn build && npm publish --access public",
10+
"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",
11+
"publish-npm": "yarn build && npm publish --access public",
1212
"test": "jest"
1313
},
1414
"devDependencies": {

0 commit comments

Comments
 (0)