Home > Net >  How can I make a clean build of microsoft/vscode source tree?
How can I make a clean build of microsoft/vscode source tree?

Time:11-09

I am trying to make a clean new build of microsoft/vscode.

Being new to JS, TS, NPM, and Yarn what command do I have to execute to clear all build artifacts and output files and build the code I changed?

CodePudding user response:

$node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile
  • Related