tools: update clang-format 1.7.0 to 1.8.0

v1.7.0 was shipping ARM64 binaries for macOS which doesn't run on Intel
Macs. v1.8.0 moved back to x86_64 binaries which works on both Intel
and M1 Macs.

Signed-off-by: Darshan Sen <raisinten@gmail.com>

PR-URL: https://github.com/nodejs/node/pull/43241
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Darshan Sen 2022-06-01 15:53:55 +05:30 committed by GitHub
parent 7ad5b420ae
commit 7a71ae80b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"clang-format": "^1.7.0"
"clang-format": "^1.8.0"
}
},
"node_modules/async": {
@ -32,9 +32,9 @@
}
},
"node_modules/clang-format": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.7.0.tgz",
"integrity": "sha512-BNuK+rXAK/Fk0rOQ1DW6bpSQUAZz6tpbZHTQn6m4PsgEkE1SNr6AQ/hhFK/b4KJrl4zjcl68molP+rEaKSZRAQ==",
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz",
"integrity": "sha512-pK8gzfu55/lHzIpQ1givIbWfn3eXnU7SfxqIwVgnn5jEM6j4ZJYjpFqFs4iSBPNedzRMmfjYjuQhu657WAXHXw==",
"dependencies": {
"async": "^3.2.3",
"glob": "^7.0.0",
@ -202,9 +202,9 @@
}
},
"clang-format": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.7.0.tgz",
"integrity": "sha512-BNuK+rXAK/Fk0rOQ1DW6bpSQUAZz6tpbZHTQn6m4PsgEkE1SNr6AQ/hhFK/b4KJrl4zjcl68molP+rEaKSZRAQ==",
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz",
"integrity": "sha512-pK8gzfu55/lHzIpQ1givIbWfn3eXnU7SfxqIwVgnn5jEM6j4ZJYjpFqFs4iSBPNedzRMmfjYjuQhu657WAXHXw==",
"requires": {
"async": "^3.2.3",
"glob": "^7.0.0",

View File

@ -4,6 +4,6 @@
"description": "Formatting C++ files for Node.js core",
"license": "MIT",
"dependencies": {
"clang-format": "^1.7.0"
"clang-format": "^1.8.0"
}
}