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
* ci: format with prettier
* chore: disable "only changed" just for this PR
* Format with prettier
* chore: re-enable only_changed for future PRs
* chore: move prettier into existing lint workflow
* chore: format with prettier
* chore: don't clean node_modules
* chore: format with prettier
---------
Co-authored-by: ascorbic <ascorbic@users.noreply.github.com>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+22-13
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,19 @@
3
3
🎉 Thanks for considering contributing to this project! 🎉
4
4
5
5
When contributing to this repository, please first discuss the change you wish to make via an
6
-
[issue](https://github.com/netlify/next-runtime/issues/new/choose). Please use the issue templates. They are there to
7
-
help you and to help the maintainers gather information.
6
+
[issue](https://github.com/netlify/next-runtime/issues/new/choose). Please use the issue templates.
7
+
They are there to help you and to help the maintainers gather information.
8
8
9
-
Before working on an issue, ask to be assigned to it. This makes it clear to other potential contributors that someone
10
-
is working on the issue.
9
+
Before working on an issue, ask to be assigned to it. This makes it clear to other potential
10
+
contributors that someone is working on the issue.
11
11
12
-
When creating a PR, please use the template. The information in the template helps maintainers review your pull request.```
12
+
When creating a PR, please use the template. The information in the template helps maintainers
13
+
review your pull request.```
13
14
14
15
This project was made with ❤️. The simplest way to give back is by starring and sharing it online.
15
16
16
-
Everyone is welcome regardless of personal background. We enforce a[Code of conduct](CODE_OF_CONDUCT.md) in order to
17
-
promote a positive and inclusive environment.
17
+
Everyone is welcome regardless of personal background. We enforce a
18
+
[Code of conduct](CODE_OF_CONDUCT.md) in order to promote a positive and inclusive environment.
18
19
19
20
## Development process
20
21
@@ -35,7 +36,8 @@ npm test
35
36
36
37
## How to write commit messages
37
38
38
-
We use [Conventional Commit messages](https://www.conventionalcommits.org/) to automate version management.
39
+
We use [Conventional Commit messages](https://www.conventionalcommits.org/) to automate version
40
+
management.
39
41
40
42
Most common commit message prefixes are:
41
43
@@ -45,15 +47,22 @@ Most common commit message prefixes are:
45
47
46
48
## Releasing
47
49
48
-
This repository uses [release-please](https://github.com/googleapis/release-please) to automate its releases.
50
+
This repository uses [release-please](https://github.com/googleapis/release-please) to automate its
51
+
releases.
49
52
50
53
## How to make a minimal reproduction
51
54
52
-
A reproducible test case is a small Next.js site built to demonstrate a problem - often this problem is caused by a bug in Next.js, next-runtime or user code. Your reproducible test case should contain the bare minimum features needed to clearly demonstrate the bug.
55
+
A reproducible test case is a small Next.js site built to demonstrate a problem - often this problem
56
+
is caused by a bug in Next.js, next-runtime or user code. Your reproducible test case should contain
57
+
the bare minimum features needed to clearly demonstrate the bug.
53
58
54
59
Steps to create a reproducible test case:
55
60
56
61
- Create a new Next.js site: `npx create-next-app@latest`
57
-
- Add any code or functionality related to the issue. For example, if you have problems with middleware functionality you should add all the necessary code of your middleware.
58
-
- Verify that you're seeing the expected error(s) when running `netlify serve` and on a deployed version on [Netlify](https://www.netlify.com)
59
-
- Publish the code (your GitHub account is a good place to do this) and then link to it when creating an issue. While creating the issue, please give as many details as possible. This could also include screenshots of error messages.
62
+
- Add any code or functionality related to the issue. For example, if you have problems with
63
+
middleware functionality you should add all the necessary code of your middleware.
64
+
- Verify that you're seeing the expected error(s) when running `netlify serve` and on a deployed
65
+
version on [Netlify](https://www.netlify.com)
66
+
- Publish the code (your GitHub account is a good place to do this) and then link to it when
67
+
creating an issue. While creating the issue, please give as many details as possible. This could
0 commit comments