problem: someone sent a PR that breaks the build process

This commit is contained in:
gsovereignty
2024-08-18 15:37:37 +08:00
parent 7d77918b9f
commit 1e8dbfce90

View File

@@ -6,11 +6,7 @@ A nostr client that implements the nostrocket [NIPS](https://github.com/nostrock
```bash
npm install
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Pull Requests
@@ -25,6 +21,16 @@ The commit message MUST be a short summary of the problem being solved, usually
Do not send pull requests unless they are ready to merge, no "work in progress" pull requests.
### We merge straight into production, so make sure you don't break the build
To test if you did something that breaks the build process, simply run the build process.
```bash
export NODE_OPTIONS="--max-old-space-size=8192"
npm install
npm run build
```
## Style Guide
Avoid uneccessary whitespace changes. Whitespace changes make it difficult to see what code was really changed.