From 1e8dbfce90cb87065479f0ff87c140784e1cbd34 Mon Sep 17 00:00:00 2001 From: gsovereignty Date: Sun, 18 Aug 2024 15:37:37 +0800 Subject: [PATCH] problem: someone sent a PR that breaks the build process --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6a7838e..fb711b9 100644 --- a/README.md +++ b/README.md @@ -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.