From 0cc48f9b65b12b9492a60c5a28004af53246651b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 7 Jun 2020 07:44:24 +0200 Subject: [PATCH 1/3] docs: node-gyp v7 should solve the gyp: No Xcode or CLT version detected! issue. --- macOS_Catalina.md | 1 + 1 file changed, 1 insertion(+) diff --git a/macOS_Catalina.md b/macOS_Catalina.md index 9ad2be5535..ab5293e8dc 100644 --- a/macOS_Catalina.md +++ b/macOS_Catalina.md @@ -1,4 +1,5 @@ # Installation notes for macOS Catalina (v10.15) +# [node-gyp v7](https://github.com/nodejs/node-gyp/releases) should solve the [`gyp: No Xcode or CLT version detected!`](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22gyp%3A+No+Xcode+or+CLT+version+detected%21%22+is%3Aclosed) issue. _This document specifically refers to upgrades from previous versions of macOS to Catalina (10.15). It should be removed from the source repository when Catalina ceases to be the latest macOS version or when future Catalina versions no longer raise these issues._ From 8e3f3f1d0a9ed68f60a72e17f3ffe5af5be9daea Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 7 Jun 2020 07:45:36 +0200 Subject: [PATCH 2/3] Update macOS_Catalina.md --- macOS_Catalina.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macOS_Catalina.md b/macOS_Catalina.md index ab5293e8dc..f7f90e7261 100644 --- a/macOS_Catalina.md +++ b/macOS_Catalina.md @@ -1,5 +1,5 @@ # Installation notes for macOS Catalina (v10.15) -# [node-gyp v7](https://github.com/nodejs/node-gyp/releases) should solve the [`gyp: No Xcode or CLT version detected!`](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22gyp%3A+No+Xcode+or+CLT+version+detected%21%22+is%3Aclosed) issue. +### [node-gyp v7](https://github.com/nodejs/node-gyp/releases) should solve the [`gyp: No Xcode or CLT version detected!`](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22gyp%3A+No+Xcode+or+CLT+version+detected%21%22+is%3Aclosed) issue. _This document specifically refers to upgrades from previous versions of macOS to Catalina (10.15). It should be removed from the source repository when Catalina ceases to be the latest macOS version or when future Catalina versions no longer raise these issues._ From d8bbfdf9628537a24621881b39f4461b6e85e016 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Sun, 7 Jun 2020 15:10:43 -0400 Subject: [PATCH 3/3] deps: increase "engines" to "node" : ">= 10.12.0" Makes npm warn users if they are using an unsupported Node version. Refs: https://github.com/nodejs/node-gyp/pull/2123 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d78e8c3619..df236d345e 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "which": "^2.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.12.0" }, "devDependencies": { "bindings": "^1.5.0",