Skip to content

Commit a1d6029

Browse files
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 <[email protected]>
1 parent 64811d5 commit a1d6029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"uglify-js": "^3.7.7"
3131
},
3232
"devDependencies": {
33-
"protobufjs": "file://.."
33+
"protobufjs": "file:.."
3434
}
3535
}

0 commit comments

Comments
 (0)