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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ for getting things done and landing your contribution.
91
91
92
92
```bash
93
93
npm ci # installs this project's dependencies
94
-
npx turbo serve# starts a preview of your local changes
94
+
npx turbo dev# starts a development environment
95
95
```
96
96
97
97
7. Perform your changes. In case you're unfamiliar with the structure of this repository, we recommend a read on the [Collaborator Guide](./COLLABORATOR_GUIDE.md)
@@ -118,14 +118,8 @@ for getting things done and landing your contribution.
118
118
git push -u origin name-of-your-branch
119
119
```
120
120
121
-
> [!NOTE]\
122
-
> By default if you run the Website (either via `npm run serve` or `npm run build`) two files on the `public` folder will be generated.
123
-
>
124
-
> You don't need to reset/discard these files, as by default we use Git Hooks that simply ignore these files during commit.
125
-
> Note that these files are generated and should **not** be committed. (`public/node-release-data.json` and `public/blog-posts-data.json`)
126
-
127
-
> [!IMPORTANT]\
128
-
> Before committing and opening a Pull Request, please go first through our [Commit](#commit-guidelines) and [Pull Request](#pull-request-policy) guidelines outlined below.
121
+
> [!IMPORTANT]\
122
+
> Before committing and opening a Pull Request, please go first through our [Commit](#commit-guidelines) and [Pull Request](#pull-request-policy) guidelines outlined below.
129
123
130
124
11. Create a Pull Request.
131
125
@@ -143,7 +137,7 @@ This repository contains several scripts and commands for performing numerous ta
143
137
<details>
144
138
<summary>Commands for Running & Building the Website</summary>
145
139
146
-
- `npx turbo serve` runs Next.js's Local Development Server, listening by default on `http://localhost:3000/`.
140
+
- `npx turbo dev` runs Next.js's Local Development Server, listening by default on `http://localhost:3000/`.
147
141
- `npx turbo build` builds the Application on Production mode. The output is by default within `.next` folder.
148
142
- This is used for the Node.js Vercel Deployments (Preview & Production)
149
143
- `npx turbo deploy` builds the Application on Export Production Mode. The output is by default within `build` folder.
0 commit comments