From 194bece576e52d77ae4dac83e86f3902a9705597 Mon Sep 17 00:00:00 2001 From: Carl Patenaude-Poulin Date: Fri, 16 Feb 2024 16:37:50 -0500 Subject: [PATCH 1/2] Bump required Node.js version The function fs.rmSync was added in Node.js 14.14; earlier versions won't build vscode-arduino. I tested `npm install` with Node.js 14.14 and it succeeds. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26950106..109ca70f 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,7 @@ You can find the full list of issues on the [Issue Tracker](https://github.com/M Installation prerequisites: - [Git](https://git-scm.com/) -- [Node.js](https://nodejs.org/) (>= 12.x) +- [Node.js](https://nodejs.org/) (>= 14.14) - [Npm](https://www.npmjs.com/) (>= 6.x) To *run and develop*, do the following: From c55b3d34e802d86b58e6e9b49282042a8123eb82 Mon Sep 17 00:00:00 2001 From: Carl Patenaude-Poulin Date: Fri, 16 Feb 2024 16:54:14 -0500 Subject: [PATCH 2/2] Bump required npm version vscode-arduino uses a v2 shrinkwrap file, which is incompatible with npm v6.x. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 109ca70f..8f76039e 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ Installation prerequisites: - [Git](https://git-scm.com/) - [Node.js](https://nodejs.org/) (>= 14.14) -- [Npm](https://www.npmjs.com/) (>= 6.x) +- [Npm](https://www.npmjs.com/) (>= 7.x) To *run and develop*, do the following: - `git clone https://github.com/microsoft/vscode-arduino`