Skip to content

Commit

Permalink
build(deps): update dependency prettier to v2.8.2 (#19843)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
  • Loading branch information
renovate[bot] and rarkins committed Jan 15, 2023
1 parent ace6ccd commit b4d1ad8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/constants/programming-language.ts
Expand Up @@ -13,4 +13,4 @@ export const programmingLanguages = [
'rust',
] as const;

export type ProgrammingLanguage = typeof programmingLanguages[number];
export type ProgrammingLanguage = (typeof programmingLanguages)[number];
2 changes: 1 addition & 1 deletion lib/modules/manager/regex/utils.ts
Expand Up @@ -18,7 +18,7 @@ export const validMatchFields = [
'depType',
] as const;

type ValidMatchFields = typeof validMatchFields[number];
type ValidMatchFields = (typeof validMatchFields)[number];

function updateDependency(
dependency: PackageDependency,
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/versioning/pep440/range.ts
Expand Up @@ -17,7 +17,7 @@ const UserPolicy = {
None: Infinity,
} as const;

type UserPolicy = typeof UserPolicy[keyof typeof UserPolicy];
type UserPolicy = (typeof UserPolicy)[keyof typeof UserPolicy];

/**
* Calculate current update range precision.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -217,7 +217,7 @@
"p-queue": "6.6.2",
"p-throttle": "4.1.1",
"parse-link-header": "2.0.0",
"prettier": "2.8.1",
"prettier": "2.8.2",
"quick-lru": "5.1.1",
"redis": "4.5.1",
"remark": "13.0.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -8470,10 +8470,10 @@ prelude-ls@^1.2.1:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==

prettier@2.8.1:
version "2.8.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc"
integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==
prettier@2.8.2:
version "2.8.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.2.tgz#c4ea1b5b454d7c4b59966db2e06ed7eec5dfd160"
integrity sha512-BtRV9BcncDyI2tsuS19zzhzoxD8Dh8LiCx7j7tHzrkz8GFXAexeWFdi22mjE1d16dftH2qNaytVxqiRTGlMfpw==

pretty-bytes@^5.1.0:
version "5.6.0"
Expand Down

0 comments on commit b4d1ad8

Please sign in to comment.