diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 46986234..f41b0348 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,19 +43,19 @@ First, run `npm install -g node-gyp`. Then: ### Building Void -To build Void, open `void/` inside VSCode. Then: +To build Void, open `void/` inside VSCode. Then open your terminal and run: 1. `npm install` to install all dependencies. 2. `npm run watchreact` to build Void's browser dependencies like React. -3. Build. +3. Build Void. - Press Cmd+Shift+B (Mac). - Press Ctrl+Shift+B (Windows/Linux). - This step can take ~5 min. The build is done when you see two check marks. -4. Run. +4. Run Void. - Run `./scripts/code.sh` (Mac/Linux). - Run `./scripts/code.bat` (Windows). - This command should open up the built IDE. You can always press Ctrl+R (Cmd+R) inside the new window to see changes without re-building, or press or Ctrl+Shift+P in the new window and run "Reload Window". - + - If you would like to reset Void back to its default settings, you can run `./scripts/code.sh --user-data-dir ./.tmp/user-data --extensions-dir ./.tmp/extensions` (mac). This will save all data and extensions to the `.tmp` folder. You can delete this folder to reset your settings. #### Building Void from Terminal diff --git a/src/vs/workbench/contrib/void/browser/react/build.js b/src/vs/workbench/contrib/void/browser/react/build.js index 1ce5a6ee..56ace25e 100755 --- a/src/vs/workbench/contrib/void/browser/react/build.js +++ b/src/vs/workbench/contrib/void/browser/react/build.js @@ -32,7 +32,7 @@ function saveStylesFile() { } catch (err) { console.error('[scope-tailwind] Error saving styles.css:', err); } - }, 3000); + }, 5000); } const args = process.argv.slice(2);