From e63ed5a7615366d67b1af9c80995ea6fb280b177 Mon Sep 17 00:00:00 2001 From: Catalina Oyaneder Date: Tue, 21 Nov 2023 11:52:33 +0000 Subject: [PATCH 1/2] fix: increase memory limit for NODE --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 99ffc71..4d5a152 100644 --- a/.releaserc +++ b/.releaserc @@ -4,7 +4,7 @@ { "//": "build the alpine, macos, linux and windows binaries", "path": "@semantic-release/exec", - "cmd": "npm i -g pkg && pkg . -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" + "cmd": "npm i -g pkg && pkg . --options max_old_space_size=16384 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" }, { "//": "shasum all binaries", From a2d131752f73a4027ff16857693c2d2f78e13ad3 Mon Sep 17 00:00:00 2001 From: Catalina Oyaneder Date: Tue, 21 Nov 2023 16:57:26 +0000 Subject: [PATCH 2/2] chore: fix pkg version --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 4d5a152..5f966be 100644 --- a/.releaserc +++ b/.releaserc @@ -4,7 +4,7 @@ { "//": "build the alpine, macos, linux and windows binaries", "path": "@semantic-release/exec", - "cmd": "npm i -g pkg && pkg . --options max_old_space_size=16384 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" + "cmd": "npm i -g pkg@5.8.1 && pkg . --options max_old_space_size=16384 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" }, { "//": "shasum all binaries",