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:
@@ -8361,11 +8361,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^2.6.2":
|
||||
version: 2.8.1
|
||||
resolution: "prettier@npm:2.8.1"
|
||||
version: 2.8.2
|
||||
resolution: "prettier@npm:2.8.2"
|
||||
bin:
|
||||
prettier: bin-prettier.js
|
||||
checksum: 4f21a0f1269f76fb36f54e9a8a1ea4c11e27478958bf860661fb4b6d7ac69aac1581f8724fa98ea3585e56d42a2ea317a17ff6e3324f40cb11ff9e20b73785cc
|
||||
checksum: 740c56c2128d587d656ea1dde9bc9c3503dfc94db4f3ac387259215eeb2e216680bdad9d18a0c9feecc6b42cfa188d6fa777df4c36c1d00cedd4199074fbfbd2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
+3
-3
@@ -7369,11 +7369,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^2.6.2":
|
||||
version: 2.8.1
|
||||
resolution: "prettier@npm:2.8.1"
|
||||
version: 2.8.2
|
||||
resolution: "prettier@npm:2.8.2"
|
||||
bin:
|
||||
prettier: bin-prettier.js
|
||||
checksum: 4f21a0f1269f76fb36f54e9a8a1ea4c11e27478958bf860661fb4b6d7ac69aac1581f8724fa98ea3585e56d42a2ea317a17ff6e3324f40cb11ff9e20b73785cc
|
||||
checksum: 740c56c2128d587d656ea1dde9bc9c3503dfc94db4f3ac387259215eeb2e216680bdad9d18a0c9feecc6b42cfa188d6fa777df4c36c1d00cedd4199074fbfbd2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
@@ -202,7 +202,7 @@ describe('Git', () => {
|
||||
await git.clone({ url, dir });
|
||||
|
||||
const { onAuth } = (
|
||||
isomorphic.clone as unknown as jest.Mock<typeof isomorphic['clone']>
|
||||
isomorphic.clone as unknown as jest.Mock<(typeof isomorphic)['clone']>
|
||||
).mock.calls[0][0]!;
|
||||
|
||||
expect(onAuth()).toEqual(auth);
|
||||
@@ -315,7 +315,7 @@ describe('Git', () => {
|
||||
await git.fetch({ remote, dir });
|
||||
|
||||
const { onAuth } = (
|
||||
isomorphic.fetch as unknown as jest.Mock<typeof isomorphic['fetch']>
|
||||
isomorphic.fetch as unknown as jest.Mock<(typeof isomorphic)['fetch']>
|
||||
).mock.calls[0][0]!;
|
||||
|
||||
expect(onAuth()).toEqual(auth);
|
||||
@@ -486,7 +486,7 @@ describe('Git', () => {
|
||||
await git.push({ remote, dir, remoteRef, force });
|
||||
|
||||
const { onAuth } = (
|
||||
isomorphic.push as unknown as jest.Mock<typeof isomorphic['push']>
|
||||
isomorphic.push as unknown as jest.Mock<(typeof isomorphic)['push']>
|
||||
).mock.calls[0][0]!;
|
||||
|
||||
expect(onAuth()).toEqual(auth);
|
||||
|
||||
@@ -188,12 +188,12 @@ export function InfoCard(props: Props): JSX.Element {
|
||||
variants.forEach(name => {
|
||||
calculatedStyle = {
|
||||
...calculatedStyle,
|
||||
...VARIANT_STYLES.card[name as keyof typeof VARIANT_STYLES['card']],
|
||||
...VARIANT_STYLES.card[name as keyof (typeof VARIANT_STYLES)['card']],
|
||||
};
|
||||
calculatedCardStyle = {
|
||||
...calculatedCardStyle,
|
||||
...VARIANT_STYLES.cardContent[
|
||||
name as keyof typeof VARIANT_STYLES['cardContent']
|
||||
name as keyof (typeof VARIANT_STYLES)['cardContent']
|
||||
],
|
||||
};
|
||||
});
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ export type BadgeSpec = {
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export type BadgeStyle = typeof BADGE_STYLES[number];
|
||||
export type BadgeStyle = (typeof BADGE_STYLES)[number];
|
||||
|
||||
// @public (undocumented)
|
||||
export const createDefaultBadgeFactories: () => BadgeFactories;
|
||||
|
||||
@@ -27,7 +27,7 @@ export const BADGE_STYLES = [
|
||||
] as const;
|
||||
|
||||
/** @public */
|
||||
export type BadgeStyle = typeof BADGE_STYLES[number];
|
||||
export type BadgeStyle = (typeof BADGE_STYLES)[number];
|
||||
|
||||
/** @public */
|
||||
export interface Badge {
|
||||
|
||||
@@ -132,7 +132,7 @@ export namespace Models {
|
||||
readonly Plaintext: 'plaintext';
|
||||
};
|
||||
export type BaseCommitSummaryMarkupEnum =
|
||||
typeof BaseCommitSummaryMarkupEnum[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
(typeof BaseCommitSummaryMarkupEnum)[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
export interface Branch {
|
||||
default_merge_strategy?: string;
|
||||
// (undocumented)
|
||||
@@ -150,7 +150,7 @@ export namespace Models {
|
||||
readonly FastForward: 'fast_forward';
|
||||
};
|
||||
export type BranchMergeStrategiesEnum =
|
||||
typeof BranchMergeStrategiesEnum[keyof typeof BranchMergeStrategiesEnum];
|
||||
(typeof BranchMergeStrategiesEnum)[keyof typeof BranchMergeStrategiesEnum];
|
||||
export interface Commit extends BaseCommit {
|
||||
// (undocumented)
|
||||
participants?: Array<Participant>;
|
||||
@@ -179,7 +179,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type CommitFileAttributesEnum =
|
||||
typeof CommitFileAttributesEnum[keyof typeof CommitFileAttributesEnum];
|
||||
(typeof CommitFileAttributesEnum)[keyof typeof CommitFileAttributesEnum];
|
||||
export interface Link {
|
||||
// (undocumented)
|
||||
href?: string;
|
||||
@@ -221,7 +221,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type ParticipantRoleEnum =
|
||||
typeof ParticipantRoleEnum[keyof typeof ParticipantRoleEnum];
|
||||
(typeof ParticipantRoleEnum)[keyof typeof ParticipantRoleEnum];
|
||||
const // (undocumented)
|
||||
ParticipantStateEnum: {
|
||||
readonly Approved: 'approved';
|
||||
@@ -230,7 +230,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type ParticipantStateEnum =
|
||||
typeof ParticipantStateEnum[keyof typeof ParticipantStateEnum];
|
||||
(typeof ParticipantStateEnum)[keyof typeof ParticipantStateEnum];
|
||||
export interface Project extends ModelObject {
|
||||
// (undocumented)
|
||||
created_on?: string;
|
||||
@@ -306,7 +306,7 @@ export namespace Models {
|
||||
readonly NoForks: 'no_forks';
|
||||
};
|
||||
export type RepositoryForkPolicyEnum =
|
||||
typeof RepositoryForkPolicyEnum[keyof typeof RepositoryForkPolicyEnum];
|
||||
(typeof RepositoryForkPolicyEnum)[keyof typeof RepositoryForkPolicyEnum];
|
||||
const // (undocumented)
|
||||
RepositoryScmEnum: {
|
||||
readonly Git: 'git';
|
||||
@@ -336,7 +336,7 @@ export namespace Models {
|
||||
}
|
||||
// (undocumented)
|
||||
export type RepositoryScmEnum =
|
||||
typeof RepositoryScmEnum[keyof typeof RepositoryScmEnum];
|
||||
(typeof RepositoryScmEnum)[keyof typeof RepositoryScmEnum];
|
||||
// (undocumented)
|
||||
export interface SearchCodeSearchResult {
|
||||
// (undocumented)
|
||||
|
||||
@@ -107,7 +107,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type BaseCommitSummaryMarkupEnum =
|
||||
typeof BaseCommitSummaryMarkupEnum[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
(typeof BaseCommitSummaryMarkupEnum)[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
|
||||
/**
|
||||
* A branch object, representing a branch in a repository.
|
||||
@@ -146,7 +146,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type BranchMergeStrategiesEnum =
|
||||
typeof BranchMergeStrategiesEnum[keyof typeof BranchMergeStrategiesEnum];
|
||||
(typeof BranchMergeStrategiesEnum)[keyof typeof BranchMergeStrategiesEnum];
|
||||
|
||||
/**
|
||||
* A repository commit object.
|
||||
@@ -191,7 +191,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type CommitFileAttributesEnum =
|
||||
typeof CommitFileAttributesEnum[keyof typeof CommitFileAttributesEnum];
|
||||
(typeof CommitFileAttributesEnum)[keyof typeof CommitFileAttributesEnum];
|
||||
|
||||
/**
|
||||
* A link to a resource related to this object.
|
||||
@@ -280,7 +280,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type ParticipantRoleEnum =
|
||||
typeof ParticipantRoleEnum[keyof typeof ParticipantRoleEnum];
|
||||
(typeof ParticipantRoleEnum)[keyof typeof ParticipantRoleEnum];
|
||||
|
||||
/**
|
||||
* @public
|
||||
@@ -295,7 +295,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type ParticipantStateEnum =
|
||||
typeof ParticipantStateEnum[keyof typeof ParticipantStateEnum];
|
||||
(typeof ParticipantStateEnum)[keyof typeof ParticipantStateEnum];
|
||||
|
||||
/**
|
||||
* A Bitbucket project.
|
||||
@@ -423,7 +423,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type RepositoryForkPolicyEnum =
|
||||
typeof RepositoryForkPolicyEnum[keyof typeof RepositoryForkPolicyEnum];
|
||||
(typeof RepositoryForkPolicyEnum)[keyof typeof RepositoryForkPolicyEnum];
|
||||
|
||||
/**
|
||||
* @public
|
||||
@@ -436,7 +436,7 @@ export namespace Models {
|
||||
* @public
|
||||
*/
|
||||
export type RepositoryScmEnum =
|
||||
typeof RepositoryScmEnum[keyof typeof RepositoryScmEnum];
|
||||
(typeof RepositoryScmEnum)[keyof typeof RepositoryScmEnum];
|
||||
|
||||
/**
|
||||
* @public
|
||||
|
||||
@@ -32067,11 +32067,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^2.2.1, prettier@npm:^2.7.1":
|
||||
version: 2.8.1
|
||||
resolution: "prettier@npm:2.8.1"
|
||||
version: 2.8.2
|
||||
resolution: "prettier@npm:2.8.2"
|
||||
bin:
|
||||
prettier: bin-prettier.js
|
||||
checksum: 4f21a0f1269f76fb36f54e9a8a1ea4c11e27478958bf860661fb4b6d7ac69aac1581f8724fa98ea3585e56d42a2ea317a17ff6e3324f40cb11ff9e20b73785cc
|
||||
checksum: 740c56c2128d587d656ea1dde9bc9c3503dfc94db4f3ac387259215eeb2e216680bdad9d18a0c9feecc6b42cfa188d6fa777df4c36c1d00cedd4199074fbfbd2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user