From 07ebb3e8ef335dfa7b2fbd5b7516974a15b29e2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 11:33:21 +0100 Subject: [PATCH] Bump prettier from 3.1.1 to 3.2.4 (#697) --- package-lock.json | 7 ++++--- package.json | 2 +- packages/protobuf-bench/tsconfig.json | 2 +- packages/protobuf-conformance/tsconfig.json | 6 +++--- packages/protobuf-example/tsconfig.json | 4 ++-- packages/protobuf-test/tsconfig.json | 4 ++-- packages/protobuf/tsconfig.json | 8 ++++---- packages/protoc-gen-es/tsconfig.json | 4 ++-- packages/protoplugin-example/tsconfig.json | 4 ++-- packages/protoplugin-test/tsconfig.json | 4 ++-- packages/protoplugin/tsconfig.json | 4 ++-- packages/typescript-compat/v4.1.x/tsconfig.json | 6 +++--- packages/typescript-compat/v4.2.x/tsconfig.json | 6 +++--- packages/typescript-compat/v4.3.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.4.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.5.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.6.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.7.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.8.x/tsconfig.json | 4 ++-- packages/typescript-compat/v4.9.x/tsconfig.json | 4 ++-- packages/typescript-compat/v5.0.x/tsconfig.json | 4 ++-- packages/typescript-compat/v5.1.x/tsconfig.json | 4 ++-- 22 files changed, 49 insertions(+), 48 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc982a174..3724376cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,7 +31,7 @@ "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^16.6.0", "jest": "^29.7.0", - "prettier": "^3.1.1", + "prettier": "^3.2.4", "typescript": "^5.2.2" }, "engines": { @@ -5440,9 +5440,10 @@ } }, "node_modules/prettier": { - "version": "3.1.1", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", + "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin/prettier.cjs" }, diff --git a/package.json b/package.json index e2f2e87cb..20774ba14 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^16.6.0", "jest": "^29.7.0", - "prettier": "^3.1.1", + "prettier": "^3.2.4", "typescript": "^5.2.2" }, "//": "avoid hoisting, see packages/protoplugin/src/ecmascript/transpile.ts", diff --git a/packages/protobuf-bench/tsconfig.json b/packages/protobuf-bench/tsconfig.json index 635a173e4..12925d7e6 100644 --- a/packages/protobuf-bench/tsconfig.json +++ b/packages/protobuf-bench/tsconfig.json @@ -1,4 +1,4 @@ { "include": ["src/**/*.ts"], - "extends": "../../tsconfig.base.json" + "extends": "../../tsconfig.base.json", } diff --git a/packages/protobuf-conformance/tsconfig.json b/packages/protobuf-conformance/tsconfig.json index f20203b44..a50a4a956 100644 --- a/packages/protobuf-conformance/tsconfig.json +++ b/packages/protobuf-conformance/tsconfig.json @@ -5,7 +5,7 @@ "lib": [ "ES2016", // ES2020.BigInt for the bigint representation of 64-bit integers - "ES2020.BigInt" - ] - } + "ES2020.BigInt", + ], + }, } diff --git a/packages/protobuf-example/tsconfig.json b/packages/protobuf-example/tsconfig.json index 3a895b7b2..2a96908d9 100644 --- a/packages/protobuf-example/tsconfig.json +++ b/packages/protobuf-example/tsconfig.json @@ -3,6 +3,6 @@ "compilerOptions": { "target": "es2016", "strict": true, - "moduleResolution": "Node" - } + "moduleResolution": "Node", + }, } diff --git a/packages/protobuf-test/tsconfig.json b/packages/protobuf-test/tsconfig.json index 087c31033..a31be0c51 100644 --- a/packages/protobuf-test/tsconfig.json +++ b/packages/protobuf-test/tsconfig.json @@ -3,6 +3,6 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { // we require this setting for the npm package "long" - "allowSyntheticDefaultImports": true - } + "allowSyntheticDefaultImports": true, + }, } diff --git a/packages/protobuf/tsconfig.json b/packages/protobuf/tsconfig.json index c71a5ce4c..741309b29 100644 --- a/packages/protobuf/tsconfig.json +++ b/packages/protobuf/tsconfig.json @@ -1,7 +1,7 @@ { "files": [ "src/index.ts", - "src/private/options-map.ts" // not yet exported, added here to satisfy the linter + "src/private/options-map.ts", // not yet exported, added here to satisfy the linter ], "extends": "../../tsconfig.base.json", "compilerOptions": { @@ -10,7 +10,7 @@ // ES2020.BigInt for the bigint representation of 64-bit integers // Note that these are only required for using bigint literals // or the BigInt constructor function. - "ES2020.BigInt" - ] - } + "ES2020.BigInt", + ], + }, } diff --git a/packages/protoc-gen-es/tsconfig.json b/packages/protoc-gen-es/tsconfig.json index ee52296af..cbdd86218 100644 --- a/packages/protoc-gen-es/tsconfig.json +++ b/packages/protoc-gen-es/tsconfig.json @@ -2,6 +2,6 @@ "files": ["src/protoc-gen-es-plugin.ts"], "extends": "../../tsconfig.base.json", "compilerOptions": { - "resolveJsonModule": true - } + "resolveJsonModule": true, + }, } diff --git a/packages/protoplugin-example/tsconfig.json b/packages/protoplugin-example/tsconfig.json index b4a565e9a..20ccc4ff0 100644 --- a/packages/protoplugin-example/tsconfig.json +++ b/packages/protoplugin-example/tsconfig.json @@ -7,6 +7,6 @@ "resolveJsonModule": true, "strict": true, "forceConsistentCasingInFileNames": true, - "verbatimModuleSyntax": true - } + "verbatimModuleSyntax": true, + }, } diff --git a/packages/protoplugin-test/tsconfig.json b/packages/protoplugin-test/tsconfig.json index 381f161f0..8fd471f7f 100644 --- a/packages/protoplugin-test/tsconfig.json +++ b/packages/protoplugin-test/tsconfig.json @@ -6,6 +6,6 @@ "allowSyntheticDefaultImports": true, "target": "ES2020", "strict": true, - "resolveJsonModule": true - } + "resolveJsonModule": true, + }, } diff --git a/packages/protoplugin/tsconfig.json b/packages/protoplugin/tsconfig.json index 7dfdebd10..b8243d8a0 100644 --- a/packages/protoplugin/tsconfig.json +++ b/packages/protoplugin/tsconfig.json @@ -3,6 +3,6 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "esModuleInterop": true, - "allowSyntheticDefaultImports": true - } + "allowSyntheticDefaultImports": true, + }, } diff --git a/packages/typescript-compat/v4.1.x/tsconfig.json b/packages/typescript-compat/v4.1.x/tsconfig.json index 1da0a1abe..1322a6aad 100644 --- a/packages/typescript-compat/v4.1.x/tsconfig.json +++ b/packages/typescript-compat/v4.1.x/tsconfig.json @@ -6,7 +6,7 @@ // generated, but imported from @bufbuild/protobuf, which is compatible. // Users of this version of TypeScript must use them. "../../protobuf-test/src/gen/ts/google/protobuf/*.ts", - "../../protobuf-test/src/google/protobuf/*.test.ts" + "../../protobuf-test/src/google/protobuf/*.test.ts", ], // These are the default compiler options for TypeScript v4.1.2, // created with `tsc --init` @@ -20,6 +20,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.2.x/tsconfig.json b/packages/typescript-compat/v4.2.x/tsconfig.json index ece8bf1a2..e52e4254f 100644 --- a/packages/typescript-compat/v4.2.x/tsconfig.json +++ b/packages/typescript-compat/v4.2.x/tsconfig.json @@ -6,7 +6,7 @@ // generated, but imported from @bufbuild/protobuf, which is compatible. // Users of this version of TypeScript must use them. "../../protobuf-test/src/gen/ts/google/protobuf/*.ts", - "../../protobuf-test/src/google/protobuf/*.test.ts" + "../../protobuf-test/src/google/protobuf/*.test.ts", ], // These are the default compiler options for TypeScript v4.2.4, // created with `tsc --init` @@ -20,6 +20,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.3.x/tsconfig.json b/packages/typescript-compat/v4.3.x/tsconfig.json index 22f81bd8d..43ab11301 100644 --- a/packages/typescript-compat/v4.3.x/tsconfig.json +++ b/packages/typescript-compat/v4.3.x/tsconfig.json @@ -12,6 +12,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.4.x/tsconfig.json b/packages/typescript-compat/v4.4.x/tsconfig.json index fa3a3fa69..f5853243b 100644 --- a/packages/typescript-compat/v4.4.x/tsconfig.json +++ b/packages/typescript-compat/v4.4.x/tsconfig.json @@ -12,6 +12,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.5.x/tsconfig.json b/packages/typescript-compat/v4.5.x/tsconfig.json index bf55e55bc..69ed8ef0a 100644 --- a/packages/typescript-compat/v4.5.x/tsconfig.json +++ b/packages/typescript-compat/v4.5.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.6.x/tsconfig.json b/packages/typescript-compat/v4.6.x/tsconfig.json index 60d9d8794..3fb90e381 100644 --- a/packages/typescript-compat/v4.6.x/tsconfig.json +++ b/packages/typescript-compat/v4.6.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.7.x/tsconfig.json b/packages/typescript-compat/v4.7.x/tsconfig.json index 57b4455a0..71e258815 100644 --- a/packages/typescript-compat/v4.7.x/tsconfig.json +++ b/packages/typescript-compat/v4.7.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.8.x/tsconfig.json b/packages/typescript-compat/v4.8.x/tsconfig.json index 0c699769d..f96bc38f1 100644 --- a/packages/typescript-compat/v4.8.x/tsconfig.json +++ b/packages/typescript-compat/v4.8.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v4.9.x/tsconfig.json b/packages/typescript-compat/v4.9.x/tsconfig.json index 34c44a90d..8357cbab6 100644 --- a/packages/typescript-compat/v4.9.x/tsconfig.json +++ b/packages/typescript-compat/v4.9.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v5.0.x/tsconfig.json b/packages/typescript-compat/v5.0.x/tsconfig.json index bce4ebc7b..763770767 100644 --- a/packages/typescript-compat/v5.0.x/tsconfig.json +++ b/packages/typescript-compat/v5.0.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, } diff --git a/packages/typescript-compat/v5.1.x/tsconfig.json b/packages/typescript-compat/v5.1.x/tsconfig.json index 92fcb0257..f3a7ef037 100644 --- a/packages/typescript-compat/v5.1.x/tsconfig.json +++ b/packages/typescript-compat/v5.1.x/tsconfig.json @@ -14,6 +14,6 @@ // Certain errors are only triggered by actually emitting declaration files, // see https://github.com/bufbuild/protobuf-es/pull/398 "declaration": true, - "declarationMap": true - } + "declarationMap": true, + }, }