From 27faca3a9bb07fcc01d874846f82dcf8c3a813eb Mon Sep 17 00:00:00 2001 From: Madiyar Date: Wed, 22 Jun 2022 21:42:08 +0100 Subject: [PATCH] Fix the relative path to protobufjs in cli 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. --- cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/package.json b/cli/package.json index 2dd7b27fa..76cc14e52 100644 --- a/cli/package.json +++ b/cli/package.json @@ -30,6 +30,6 @@ "uglify-js": "^3.7.7" }, "devDependencies": { - "protobufjs": "file://.." + "protobufjs": "file:.." } }