File tree 25 files changed +700
-24
lines changed
25 files changed +700
-24
lines changed Original file line number Diff line number Diff line change
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by ` @changesets/cli ` , a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [ in our repository] ( https://github.com/changesets/changesets )
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [ our documentation] ( https://github.com/changesets/changesets/blob/main/docs/common-questions.md )
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://unpkg.com/@changesets/config@2.3.0/schema.json" ,
3
+ "changelog" : " @changesets/cli/changelog" ,
4
+ "commit" : false ,
5
+ "fixed" : [],
6
+ "linked" : [],
7
+ "access" : " public" ,
8
+ "baseBranch" : " main" ,
9
+ "updateInternalDependencies" : " patch" ,
10
+ "ignore" : []
11
+ }
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -3,5 +3,7 @@ nodeLinker: node-modules
3
3
plugins :
4
4
- path : .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5
5
spec : " @yarnpkg/plugin-interactive-tools"
6
+ - path : .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
7
+ spec : " @yarnpkg/plugin-workspace-tools"
6
8
7
9
yarnPath : .yarn/releases/yarn-3.4.1.cjs
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/docs" ,
3
3
"version" : " 1.0.0" ,
4
+ "private" : true ,
4
5
"description" : " " ,
5
6
"main" : " index.js" ,
6
7
"scripts" : {
Original file line number Diff line number Diff line change
1
+ # @calcom/web
2
+
3
+ ## 2.7.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @calcom/embed-snippet @1.0.7
9
+ - @calcom/embed-react @1.0.12
10
+ - @calcom/embed-core @1.1.5
Original file line number Diff line number Diff line change 17
17
"app-store" : " yarn app-store-cli cli" ,
18
18
"create-app" : " yarn app-store create" ,
19
19
"edit-app" : " yarn app-store edit" ,
20
+ "publish-embed" : " yarn workspaces foreach --from=\" @calcom/embed*\" npm publish --access=public" ,
20
21
"delete-app" : " yarn app-store delete" ,
21
22
"create-app-template" : " yarn app-store create-template" ,
22
23
"edit-app-template" : " yarn app-store edit-template" ,
74
75
"web" : " yarn workspace @calcom/web"
75
76
},
76
77
"devDependencies" : {
78
+ "@changesets/cli" : " ^2.26.1" ,
77
79
"@deploysentinel/playwright" : " ^0.3.3" ,
78
80
"@playwright/test" : " ^1.31.2" ,
79
81
"@snaplet/copycat" : " ^0.3.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/app-store-cli" ,
3
+ "private" : true ,
3
4
"sideEffects" : false ,
4
5
"version" : " 0.0.0" ,
5
6
"bin" : " dist/cli.js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/app-store" ,
3
+ "private" : true ,
3
4
"sideEffects" : false ,
4
5
"version" : " 0.0.0" ,
5
6
"main" : " ./index.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/config" ,
3
3
"sideEffects" : false ,
4
+ "private" : true ,
4
5
"version" : " 0.0.0" ,
5
6
"main" : " index.js" ,
6
7
"license" : " MIT" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/dayjs" ,
3
3
"description" : " Cal.com's Day.js shared library" ,
4
+ "private" : true ,
4
5
"version" : " 1.0.0" ,
5
6
"main" : " ./index.ts" ,
6
7
"dependencies" : {
Original file line number Diff line number Diff line change @@ -6,3 +6,11 @@ This folder contains all the various flavours of embeds.
6
6
` snippet ` contains the Vanilla JS Code Snippet that can be installed on any website and would automatically fetch the ` core ` library.
7
7
8
8
Please see the respective folder READMEs for details on them.
9
+
10
+ ## Publishing to NPM - Soon to be automated using changesets github action
11
+ To publish the packages. Following steps should be followed. All commands are to be run at the root.
12
+
13
+ 1 . ` yarn changeset ` -> Creates changelog files and adds summary to changelog. Select embed packages only here.
14
+ 2 . ` yarn changeset version ` -> Bumps the versions as required
15
+ 3 . Get the PR reviewed and merged
16
+ 4 . ` yarn publish-embed ` -> Releases all packages. We can't use ` yarn changeset publish ` because it doesn't support workspace: prefix removal yet. See https://github.com/changesets/changesets/issues/432#issuecomment-1016365428
Original file line number Diff line number Diff line change
1
+ # @calcom/embed-core
2
+
3
+ ## 1.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Add changesets. Use prepack instead of prePublish and prepublish only as that works with both yarn and npm
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/embed-core" ,
3
- "version" : " 1.1.3 " ,
3
+ "version" : " 1.1.5 " ,
4
4
"description" : " This is the vanilla JS core script that embeds Cal Link" ,
5
5
"main" : " ./dist/embed/embed.js" ,
6
6
"types" : " ./dist/index.d.ts" ,
29
29
"embed-tests" : " yarn playwright test --config=playwright/config/playwright.config.ts" ,
30
30
"embed-tests-quick" : " QUICK=true yarn embed-tests" ,
31
31
"embed-tests-update-snapshots:ci" : " yarn embed-tests-quick --update-snapshots" ,
32
- "prepare" : " NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build" ,
33
- "publish-prod:patch" : " yarn publish --access public --patch" ,
32
+ "prepack" : " NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build" ,
34
33
"clean" : " rm -rf .turbo && rm -rf node_modules && rm -rf ../../../apps/web/public/embed"
35
34
},
36
35
"files" : [
Original file line number Diff line number Diff line change
1
+ # @calcom/embed-react
2
+
3
+ ## 1.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Add changesets. Use prepack instead of prePublish and prepublish only as that works with both yarn and npm
8
+ - Updated dependencies
9
+ - @calcom/embed-snippet @1.0.7
10
+ - @calcom/embed-core @1.1.5
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/embed-react" ,
3
3
"sideEffects" : false ,
4
- "version" : " 1.0.10 " ,
4
+ "version" : " 1.0.12 " ,
5
5
"description" : " Embed Cal Link as a React Component" ,
6
6
"license" : " SEE LICENSE IN LICENSE" ,
7
7
"repository" : {
20
20
"embed-tests" : " yarn playwright test --config=./playwright/config/playwright.config.ts" ,
21
21
"embed-tests-quick" : " QUICK=true yarn embed-tests" ,
22
22
"embed-tests-update-snapshots:ci" : " yarn embed-tests-quick --update-snapshots" ,
23
+ "prepack" : " NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build" ,
23
24
"embed-web-start" : " yarn workspace @calcom/web start" ,
24
25
"embed-dev" : " yarn workspace @calcom/embed-react dev" ,
25
- "publish-prod:patch" : " yarn publish --access public --patch" ,
26
26
"clean" : " rm -rf .turbo && rm -rf node_modules && rm -rf dist"
27
27
},
28
28
"main" : " ./dist/Cal.umd.js" ,
Original file line number Diff line number Diff line change
1
+ # @calcom/embed-snippet
2
+
3
+ ## 1.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Add changesets. Use prepack instead of prePublish and prepublish only as that works with both yarn and npm
8
+ - Updated dependencies
9
+ - @calcom/embed-core @1.1.5
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/embed-snippet" ,
3
3
"sideEffects" : false ,
4
- "version" : " 1.0.5 " ,
4
+ "version" : " 1.0.7 " ,
5
5
"main" : " ./dist/snippet.umd.js" ,
6
6
"module" : " ./dist/snippet.es.js" ,
7
7
"description" : " Vanilla JS embed snippet that is responsible to fetch @calcom/embed-core and thus show Cal Link as an embed on a page." ,
16
16
"type-check" : " tsc --pretty --noEmit" ,
17
17
"type-check:ci" : " tsc-absolute --pretty --noEmit" ,
18
18
"lint" : " eslint --ext .ts,.js src" ,
19
- "prepare" : " NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build" ,
20
- "publish-prod:patch" : " yarn publish --access public --patch" ,
19
+ "prepack" : " NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build" ,
21
20
"clean" : " rm -rf .turbo && rm -rf node_modules && rm -rf dist"
22
21
},
23
22
"files" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/eslint-plugin-eslint" ,
3
3
"sideEffects" : false ,
4
+ "private" : true ,
4
5
"version" : " 0.1.0" ,
5
6
"main" : " ./src/index.js" ,
6
7
"dependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/feature-auth" ,
3
3
"sideEffects" : false ,
4
+ "private" : true ,
4
5
"description" : " Cal.com's main auth code" ,
5
6
"authors" : " Cal.com, Inc." ,
6
7
"version" : " 1.0.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/features" ,
3
3
"sideEffects" : false ,
4
+ "private" : true ,
4
5
"description" : " Cal.com's main collocation of features" ,
5
6
"authors" : " Cal.com, Inc." ,
6
7
"version" : " 1.0.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/lib" ,
3
+ "private" : true ,
3
4
"sideEffects" : false ,
4
5
"version" : " 0.0.0" ,
5
6
"main" : " ./index.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/trpc" ,
3
3
"sideEffects" : false ,
4
+ "private" : true ,
4
5
"description" : " Shared tRPC library for Cal.com" ,
5
6
"authors" : " zomars" ,
6
7
"version" : " 1.0.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @calcom/ui" ,
3
+ "private" : true ,
3
4
"sideEffects" : false ,
4
5
"version" : " 0.0.0" ,
5
6
"main" : " ./index.tsx" ,
You can’t perform that action at this time.
0 commit comments