You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time a PR is merged into `main`, an automated canary release will happen. Once the packages are pushed to `npm`, the following actions will take place:
6
6
@@ -15,7 +15,7 @@ Actions that will be triggered:
15
15
16
16
-`clerk/cloudflare-workers`: The latest clerk-js versions in `clerkjs-proxy/wrangler.toml` will be updated a PR will open. Follow the instructions in the PR to manually release a new `clerkjs-proxy` worker.
17
17
18
-
For more details, refer to [PUBLISH.md](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
18
+
For more details, refer to the [Publishing docs](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
19
19
20
20
## Automated canary releases
21
21
@@ -26,19 +26,19 @@ Actions that will be triggered:
26
26
-`clerk/cloudflare-workers`: The latest clerk-js versions in `clerkjs-proxy/wrangler.toml` will be updated and directly committed to `main`. A second workflow will perform a canary release of the `clerkjs-proxy` worker.
27
27
-`clerk/accounts`: A new Accounts deployment will take place, using the most recent canary `@clerk/nextjs` version. This change will not be committed to `main`.
28
28
29
-
For more details about canary releases, refer to [PUBLISH.md](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
29
+
For more details about canary releases, refer to the [Publishing docs](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
30
30
31
31
## Quality checks
32
32
33
33
Every time a PR opens or a PR is merged into `main`, the workflows defined in `.github/workflows` will run, ensuring:
34
34
35
35
- all packages build correctly
36
36
- all unit and integration tests are passing
37
-
- no type issues exist using `TSC`
37
+
- no type issues exist using `tsc`
38
38
- no lint issues exist
39
39
- formatting is consistent
40
40
41
-
## Misc
41
+
## Miscellaneous
42
42
43
43
- The `labeler` workflow automatically adds tags to all PRs according to the packages they affect
44
-
- The `lock-threads` workflow runs on a schedule and automatically locks stale PRs and issues.
44
+
- The `lock-threads` workflow runs on a schedule and automatically locks stale PRs and issues
Copy file name to clipboardexpand all lines: docs/CONTRIBUTING.md
+33-15
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,15 @@ When contributing to this repository, please first discuss the change you wish t
4
4
Please note we have a [code of conduct](https://github.com/clerk/javascript/blob/main/docs/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
5
5
6
6
<detailsopen="open">
7
-
<summary><strong>TABLE OF CONTENTS</strong></summary>
7
+
<summary><strong>Table of contents</strong></summary>
8
8
9
9
-[Contributing guide](#contributing-guide)
10
10
-[Developing locally](#developing-locally)
11
11
-[Monorepo setup](#monorepo-setup)
12
12
-[Prerequisites](#prerequisites)
13
13
-[Setting up your local environment](#setting-up-your-local-environment)
14
14
-[Documenting your changes](#documenting-your-changes)
15
+
-[Writing tests](#writing-tests)
15
16
-[Opening a Pull Request](#opening-a-pull-request)
16
17
-[Changesets](#changesets)
17
18
-[Commit messages](#commit-messages)
@@ -35,6 +36,9 @@ The current monorepo setup is based on:
35
36
-[Changesets](https://github.com/changesets/changesets), used for package versioning, publishing and changelog generation.
36
37
-[GitHub Actions](https://docs.github.com/en/actions), used for quality checks and automated release orchestration.
37
38
-[Yalc](https://github.com/wclr/yalc), used for to publish packages locally and test them in other local projects.
39
+
-[Jest](https://jestjs.io/), used for running unit tests.
40
+
-[QUnit](https://qunitjs.com/), used for tests inside `@clerk/backend`.
41
+
-[Playwright](https://playwright.dev/), used for running the [integration](../integration/) test suite.
38
42
39
43
All packages of the monorepo are inside [packages](../packages). For package specific details on installation, architecture and usage, you can refer to the package's README file.
40
44
@@ -48,7 +52,7 @@ Additionally there are packages which act as shared utilities or building blocks
48
52
49
53
### Prerequisites
50
54
51
-
Have a node version installed that is equal or higher than the one defined in `.nvmrc`
55
+
Ensure that you have Node.js installed ([How to install Node.js](https://nodejs.org/en/learn/getting-started/how-to-install-nodejs)). Its version should be equal or higher than the one defined in `.nvmrc` in the root of the repository.
52
56
53
57
### Setting up your local environment
54
58
@@ -60,39 +64,53 @@ To set up your development environment, please follow these steps:
60
64
git clone https://github.com/clerk/javascript
61
65
```
62
66
63
-
2. Install the dependencies. We're using npm workspaces, so you **should always run `npm install` from the root of the monorepo**, as it will install dependencies for all the packages:
67
+
1. Install the dependencies. We're using npm workspaces, so you **should always run `npm install` from the root of the monorepo**, as it will install dependencies for all the packages:
64
68
65
69
```sh
66
70
cd javascript
67
71
npm install
68
72
```
69
73
70
-
3. Build all the packages in the monorepo by running:
74
+
1. Build all the packages in the monorepo by running:
71
75
72
76
```sh
73
77
npm run build
74
78
```
75
79
76
-
For package specific setup, refer to the `Build` section of the specific package (eg packages/<package_name>/README.md#build).
80
+
This ensures that all internal TypeScript types are generated and any dependencies between packages are resolving.
81
+
82
+
For package specific setup, refer to the `Build` section of the specific package (e.g. `packages/<package_name>/README.md#build`).
77
83
78
84
### Documenting your changes
79
85
80
86
Updating documentation is an important part of the contribution process. If you are changing existing behavior or adding a new feature, make sure [Clerk's documentation](https://github.com/clerk/clerk-docs) is also updated.
81
87
82
88
To improve the in-editor experience when using Clerk's SDKs, we do our best to add [JSDoc comments](https://jsdoc.app/about-getting-started.html) to our package's public exports. The JSDoc comments should not attempt to duplicate any existing type information, but should provide meaningful additional context or references. If you are adding a new export, make sure it has a JSDoc comment. If you are updating an existing export, make sure any existing comments are updated appropriately.
83
89
90
+
### Writing tests
91
+
92
+
When changing functionality or adding completely new code it's highly recommended to add/edit tests to verify the new behavior.
93
+
94
+
Inside the repository you'll find two types of tests:
95
+
96
+
1. Unit tests
97
+
1. Integration tests
98
+
99
+
While changing a file inside a package, check if e.g. a `<name>.test.ts` file or a test inside a `__tests__` folder exists. If you add a completely new file, please add a unit test for it.
100
+
101
+
If your change can't only be tested by unit tests, you should add/edit an integration test. You can find all necessary information about this in the [integration tests README](../integration/README.md).
that relate to your submission. You don't want to duplicate effort.
89
-
2. Fork the project
90
-
3. Create your feature branch (`git checkout -b feat/amazing_feature`)
91
-
4. If required, create a `changeset` that describes your changes (`npm run changeset`). In cases where a changeset is not required, an empty changeset can be created instead (`npm run changeset:empty`) - an empty changeset will not generate a changelog entry for the change, so please use it as an escape hatch or for internal refactors only.
92
-
5. Commit your changes (`git commit -m 'feat: Add amazing_feature'`)
93
-
6. Push to the branch (`git push origin feat/amazing_feature`)
94
-
7.[Open a Pull Request](https://github.com/clerk/javascript/compare?expand=1). Make sure the description includes enough information for the reviewer to understand what the PR is about.
95
-
8. Follow the instructions of the pull request template
105
+
1. Search our repository for open or closed [Pull Requests](https://github.com/clerk/javascript/pulls) that relate to your submission. You don't want to duplicate effort.
106
+
1. Fork the project
107
+
1. Create your feature branch (`git checkout -b feat/amazing_feature`)
108
+
1. It's highly recommended to [write tests](#writing-tests) to ensure your change works and will continue to work in the future
109
+
1. If required, create a `changeset` that describes your changes (`npm run changeset`). In cases where a changeset is not required, an empty changeset can be created instead (`npm run changeset:empty`) - an empty changeset will not generate a changelog entry for the change, so please use it as an escape hatch or for internal refactors only.
110
+
1. Commit your changes (`git commit -m 'feat: Add amazing_feature'`)
111
+
1. Push to the branch (`git push origin feat/amazing_feature`)
112
+
1.[Open a Pull Request](https://github.com/clerk/javascript/compare?expand=1). Make sure the description includes enough information for the reviewer to understand what the PR is about.
113
+
1. Follow the instructions of the pull request template
0 commit comments