aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2024-10-14 19:04:41 +0200
committerGitHub <noreply@github.com>2024-10-14 19:04:41 +0200
commitd92810614b53270a8f014db14022887ee3383fd5 (patch)
tree0faaec1e90ccaed559a584159fa67b1a0463b71c
parent4ef25b0de4a847f14ba2f88e309eaf759e035d78 (diff)
downloadjquery-d92810614b53270a8f014db14022887ee3383fd5.tar.gz
jquery-d92810614b53270a8f014db14022887ee3383fd5.zip
Docs: Align CONTRIBUTING.md with `3.x-stable`
Closes gh-5567 Ref gh-5564
-rw-r--r--CONTRIBUTING.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c93e82b46..b899a6843 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -71,43 +71,43 @@ We *love* when people contribute back to the project by patching the bugs they f
Create a fork of the jQuery repo on GitHub at https://github.com/jquery/jquery
-Clone your jQuery fork to work locally
+Clone your jQuery fork to work locally:
```bash
$ git clone git@github.com:username/jquery.git
```
-Change directory to the newly created dir jquery/
+Change directory to the newly created dir `jquery/`:
```bash
$ cd jquery
```
-Add the jQuery main as a remote. I label mine "upstream"
+Add the jQuery `main` as a remote. I label mine `upstream`:
```bash
$ git remote add upstream git@github.com:jquery/jquery.git
```
-Get in the habit of pulling in the "upstream" main to stay up to date as jQuery receives new commits
+Get in the habit of pulling in the "upstream" main to stay up to date as jQuery receives new commits:
```bash
$ git pull upstream main
```
-Install the necessary dependencies
+Install the necessary dependencies:
```bash
$ npm install
```
-Build all jQuery files
+Build all jQuery files:
```bash
$ npm run build:all
```
-Start a test server
+Start a test server:
```bash
$ npm run test:server