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
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ for getting things done and landing your contribution.
106
106
107
107
```bash
108
108
pnpm install --frozen-lockfile # installs this project's dependencies
109
-
pnpm dev # starts a development environment
109
+
node --run dev # starts a development environment
110
110
```
111
111
112
112
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,10 +118,10 @@ for getting things done and landing your contribution.
118
118
git merge upstream/main
119
119
```
120
120
121
-
9. Run `pnpm format` to confirm that linting and formatting are passing.
121
+
9. Run `node --run format` to confirm that linting and formatting are passing.
122
122
123
123
```bash
124
-
pnpm format
124
+
node --run format
125
125
```
126
126
127
127
10. Once you're happy with your changes, add and commit them to your branch, then push the branch to your fork.
@@ -152,30 +152,30 @@ This repository contains several scripts and commands for performing numerous ta
152
152
<details>
153
153
<summary>Commands for Running & Building the Website</summary>
154
154
155
-
- `pnpm dev` runs Next.js's Local Development Server, listening by default on `http://localhost:3000/`.
156
-
- `pnpm build` builds the Application on Production mode. The output is by default within `.next` folder.
155
+
- `node --run dev` runs Next.js's Local Development Server, listening by default on `http://localhost:3000/`.
156
+
- `node --run build` builds the Application on Production mode. The output is by default within `.next` folder.
157
157
- This is used for the Node.js Vercel Deployments (Preview & Production)
158
-
- `pnpm deploy` builds the Application on Export Production Mode. The output is by default within `build` folder.
158
+
- `node --run deploy` builds the Application on Export Production Mode. The output is by default within `build` folder.
159
159
- This is used for the Node.js Legacy Website Server (DigitalOcean)
160
-
- `pnpm start` starts a web server running serving the built content from `pnpm build`
160
+
- `node --run start` starts a web server running serving the built content from `node --run build`
161
161
162
162
</details>
163
163
164
164
<details>
165
165
<summary>Commands for Maintenance Tasks and Tests</summary>
166
166
167
-
- `pnpm lint` runs the linter for all files.
168
-
- `pnpm lint:fix` attempts to fix any linting errors
169
-
- `pnpm prettier` runs the prettier for all the js files.
170
-
- `pnpm prettier:fix` attempts to fix any style errors
171
-
- `pnpm format` formats and fixes lints for the whole codebase
172
-
- `pnpm scripts:release-post` generates a release post for the current release
0 commit comments