From fab9429707a2d3d6f54d7c7a327e693153ecfc89 Mon Sep 17 00:00:00 2001 From: Tri Nguyen Date: Fri, 1 Dec 2017 09:31:00 -0500 Subject: [PATCH] update instruction to use npx --- HACKING.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/HACKING.md b/HACKING.md index 1827d141..d0a62d1d 100644 --- a/HACKING.md +++ b/HACKING.md @@ -10,14 +10,13 @@ First, install the dependencies: ``` # macOS/Linux: -sudo npm -g install yarn node-gyp -yarn install +npm install ./scripts/install-deps.js ./scripts/build-native.js # Windows: -npm -g install yarn node-gyp windows-build-tools -yarn install +npm -g install windows-build-tools +npm install node scripts\install-deps.js node scripts\build-native.js ```