From 8d82d4d56fdef6f8720702d6e984274630d7026e Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Fri, 28 Nov 2025 16:28:45 +0100 Subject: [PATCH] Clean up the PR --- packages/safe-chain/package.json | 22 ------------------- .../safe-chain/src/registryProxy/certUtils.js | 1 - 2 files changed, 23 deletions(-) diff --git a/packages/safe-chain/package.json b/packages/safe-chain/package.json index b37c8fa..516077d 100644 --- a/packages/safe-chain/package.json +++ b/packages/safe-chain/package.json @@ -64,27 +64,5 @@ "type": "git", "url": "git+https://github.com/AikidoSec/safe-chain.git", "directory": "packages/safe-chain" - }, - "pkg": { - "targets": [ - "node22-linux-x64", - "node22-linux-arm64", - "node22-macos-x64", - "node22-macos-arm64", - "node22-win-x64", - "node22-win-arm64" - ], - "outputPath": "dist", - "assets": [ - "node_modules/certifi/**/*" - ], - "scripts": [ - "src/**/*.js", - "bin/**/*.js" - ], - "ignore": [ - "**/*.spec.js", - "test/**" - ] } } diff --git a/packages/safe-chain/src/registryProxy/certUtils.js b/packages/safe-chain/src/registryProxy/certUtils.js index e148711..6b326c8 100644 --- a/packages/safe-chain/src/registryProxy/certUtils.js +++ b/packages/safe-chain/src/registryProxy/certUtils.js @@ -2,7 +2,6 @@ import forge from "node-forge"; import path from "path"; import fs from "fs"; import os from "os"; -import { ui } from "../environment/userInteraction.js"; const certFolder = path.join(os.homedir(), ".safe-chain", "certs"); const ca = loadCa();