From 6e326790c4f63b43a214ff260d60f0afc9361a06 Mon Sep 17 00:00:00 2001 From: unbyte Date: Thu, 25 Jan 2024 18:08:56 +0800 Subject: [PATCH] feat: mirror pkg-fetch from yao-pkg/pkg-fetch (#644) **what:** pkg-fetch provides prebuilt node binaries used by pkg. **why from yao-pkg:** [vercel/pkg-fetch](https://github.com/vercel/pkg-fetch) was archived, [yao-pkg/pkg-fetch](https://github.com/yao-pkg/pkg-fetch) is currently the most actively maintained fork. close: https://github.com/cnpm/cnpmcore/issues/543 --- config/binaries.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/binaries.ts b/config/binaries.ts index e5927c94..b3102333 100644 --- a/config/binaries.ts +++ b/config/binaries.ts @@ -895,6 +895,14 @@ const binaries = { repo: 'ant-design/ant-design-charts', distUrl: 'https://github.com/ant-design/ant-design-charts/releases', }, + 'pkg-fetch': { + category: 'pkg-fetch', + description: + 'pkg-fetch provides prebuilt node binaries used by pkg. yao-pkg/pkg-fetch is currently the most actively maintained fork of vercel/pkg-fetch.', + type: BinaryType.GitHub, + repo: 'yao-pkg/pkg-fetch', + distUrl: 'https://github.com/yao-pkg/pkg-fetch/releases', + }, } as const; export type BinaryName = keyof typeof binaries;