Merge pull request #15633 from backstage/renovate/prettier-2.x-lockfile

chore(deps): update dependency prettier to v2.8.3
This commit is contained in:
Ben Lambert
2023-02-06 15:14:05 +01:00
committed by GitHub
10 changed files with 32 additions and 32 deletions
@@ -17,7 +17,7 @@
import { ConfigReader } from '@backstage/config';
import { OptionValues } from 'commander';
type Publisher = keyof typeof PublisherConfig['configFactories'];
type Publisher = keyof (typeof PublisherConfig)['configFactories'];
type PublisherConfiguration = {
[p in Publisher]?: any;
} & {
@@ -73,7 +73,7 @@ export class PublisherConfig {
*/
private static isKnownPublisher(
type: string,
): type is keyof typeof PublisherConfig['configFactories'] {
): type is keyof (typeof PublisherConfig)['configFactories'] {
return PublisherConfig.configFactories.hasOwnProperty(type);
}