From a1d60292ecb22fcf89c493c562ae07ab10ef49c9 Mon Sep 17 00:00:00 2001 From: Madiyar Date: Thu, 7 Jul 2022 02:27:19 +0100 Subject: [PATCH] fix: proper relative path to protobufjs in cli (#1753) According to https://docs.npmjs.com/cli/v8/configuring-npm/package-json#local-paths the local path should be `file:..` instead of `file://..`. The later version copies whole top-level file-system in a macOS and with a recent version of npm (8.12.2) and results in a `MODULE_NOT_FOUND` error. Co-authored-by: Alexander Fenster --- cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/package.json b/cli/package.json index 0c88ce43a..32991eacb 100644 --- a/cli/package.json +++ b/cli/package.json @@ -30,6 +30,6 @@ "uglify-js": "^3.7.7" }, "devDependencies": { - "protobufjs": "file://.." + "protobufjs": "file:.." } }