Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2022-04-14 08:29:47 +0300
committerGitHub <noreply@github.com>2022-04-14 08:29:47 +0300
commitf076c3633556ff862f417c1c55bbe9f3185b6b95 (patch)
treeca1f0cec64ca1c531371b222cb0d815ef9737775 /tools
parent3026ca0bf2d659f07a6f65a375f707acf63d0eb1 (diff)
tools: update clang-format 1.6.0 to 1.7.0
This resolves `npm audit` warnings when running `make format-cpp-build`. PR-URL: https://github.com/nodejs/node/pull/42724 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'tools')
-rw-r--r--tools/clang-format/package-lock.json30
-rw-r--r--tools/clang-format/package.json2
2 files changed, 16 insertions, 16 deletions
diff --git a/tools/clang-format/package-lock.json b/tools/clang-format/package-lock.json
index 37bcb5e272c..1a080a750ea 100644
--- a/tools/clang-format/package-lock.json
+++ b/tools/clang-format/package-lock.json
@@ -9,13 +9,13 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
- "clang-format": "^1.6.0"
+ "clang-format": "^1.7.0"
}
},
"node_modules/async": {
- "version": "1.5.2",
- "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
- "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
+ "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="
},
"node_modules/balanced-match": {
"version": "1.0.2",
@@ -32,11 +32,11 @@
}
},
"node_modules/clang-format": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.6.0.tgz",
- "integrity": "sha512-W3/L7fWkA8DoLkz9UGjrRnNi+J5a5TuS2HDLqk6WsicpOzb66MBu4eY/EcXhicHriVnAXWQVyk5/VeHWY6w4ow==",
+ "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==",
"dependencies": {
- "async": "^1.5.2",
+ "async": "^3.2.3",
"glob": "^7.0.0",
"resolve": "^1.1.6"
},
@@ -183,9 +183,9 @@
},
"dependencies": {
"async": {
- "version": "1.5.2",
- "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
- "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
+ "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="
},
"balanced-match": {
"version": "1.0.2",
@@ -202,11 +202,11 @@
}
},
"clang-format": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.6.0.tgz",
- "integrity": "sha512-W3/L7fWkA8DoLkz9UGjrRnNi+J5a5TuS2HDLqk6WsicpOzb66MBu4eY/EcXhicHriVnAXWQVyk5/VeHWY6w4ow==",
+ "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==",
"requires": {
- "async": "^1.5.2",
+ "async": "^3.2.3",
"glob": "^7.0.0",
"resolve": "^1.1.6"
}
diff --git a/tools/clang-format/package.json b/tools/clang-format/package.json
index 85347474a5d..50454249b52 100644
--- a/tools/clang-format/package.json
+++ b/tools/clang-format/package.json
@@ -4,6 +4,6 @@
"description": "Formatting C++ files for Node.js core",
"license": "MIT",
"dependencies": {
- "clang-format": "^1.6.0"
+ "clang-format": "^1.7.0"
}
}