Skip to content

Commit

Permalink
Bump prettier from 3.1.1 to 3.2.4 (#697)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent f606a74 commit 07ebb3e
Show file tree
Hide file tree
Showing 22 changed files with 49 additions and 48 deletions.
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/protobuf-bench/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"include": ["src/**/*.ts"],
"extends": "../../tsconfig.base.json"
"extends": "../../tsconfig.base.json",
}
6 changes: 3 additions & 3 deletions packages/protobuf-conformance/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"lib": [
"ES2016",
// ES2020.BigInt for the bigint representation of 64-bit integers
"ES2020.BigInt"
]
}
"ES2020.BigInt",
],
},
}
4 changes: 2 additions & 2 deletions packages/protobuf-example/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"target": "es2016",
"strict": true,
"moduleResolution": "Node"
}
"moduleResolution": "Node",
},
}
4 changes: 2 additions & 2 deletions packages/protobuf-test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
// we require this setting for the npm package "long"
"allowSyntheticDefaultImports": true
}
"allowSyntheticDefaultImports": true,
},
}
8 changes: 4 additions & 4 deletions packages/protobuf/tsconfig.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
],
},
}
4 changes: 2 additions & 2 deletions packages/protoc-gen-es/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"files": ["src/protoc-gen-es-plugin.ts"],
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true
}
"resolveJsonModule": true,
},
}
4 changes: 2 additions & 2 deletions packages/protoplugin-example/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"resolveJsonModule": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true
}
"verbatimModuleSyntax": true,
},
}
4 changes: 2 additions & 2 deletions packages/protoplugin-test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"allowSyntheticDefaultImports": true,
"target": "ES2020",
"strict": true,
"resolveJsonModule": true
}
"resolveJsonModule": true,
},
}
4 changes: 2 additions & 2 deletions packages/protoplugin/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
}
"allowSyntheticDefaultImports": true,
},
}
6 changes: 3 additions & 3 deletions packages/typescript-compat/v4.1.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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,
},
}
6 changes: 3 additions & 3 deletions packages/typescript-compat/v4.2.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.3.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.4.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.5.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.6.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.7.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.8.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v4.9.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v5.0.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}
4 changes: 2 additions & 2 deletions packages/typescript-compat/v5.1.x/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}

0 comments on commit 07ebb3e

Please sign in to comment.