From eace7827807143ea9e4b4ab7b500bd2513d9b9c1 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 9 Jan 2024 14:35:27 -0500 Subject: [PATCH 1/3] add next - Closes https://github.com/nodejs/citgm/issues/1017 --- lib/lookup.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/lookup.json b/lib/lookup.json index 60c72725..3aecc814 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -313,6 +313,14 @@ "skip": [ "win32", "aix", "s390x"], "comment": "Skipped while a proper solution is found" }, + "next": { + "maintainers": ["Ethan-Arrowood", "styfle", "timneutkens"], + "prefix": "v", + "scripts": ["build", "test-unit"], + "tags": "native", + "head": true, + "pnpm": true + }, "node-gyp": { "envVar": { "FAST_TEST": "true" }, "tags": "native", From a693d85b03f309aeccb749e438e7815331c7c761 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 9 Jan 2024 15:19:31 -0500 Subject: [PATCH 2/3] fix: add missing repo prop to next --- lib/lookup.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lookup.json b/lib/lookup.json index 3aecc814..c2a3001b 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -316,6 +316,7 @@ "next": { "maintainers": ["Ethan-Arrowood", "styfle", "timneutkens"], "prefix": "v", + "repo": "https://github.com/vercel/next.js", "scripts": ["build", "test-unit"], "tags": "native", "head": true, From 04566576bf9bbb4a4422cfa3d724eb58b2dbdd19 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 10 Jan 2024 10:38:15 -0500 Subject: [PATCH 3/3] fix: skip windows for next --- lib/lookup.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lookup.json b/lib/lookup.json index c2a3001b..252321fb 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -318,6 +318,7 @@ "prefix": "v", "repo": "https://github.com/vercel/next.js", "scripts": ["build", "test-unit"], + "skip": ["win32"], "tags": "native", "head": true, "pnpm": true