mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
build(deps-dev): bump prettier from 2.8.1 to 2.8.2 (#1426)
* build(deps-dev): bump prettier from 2.8.1 to 2.8.2 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.1 to 2.8.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.1...2.8.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * yarn lint Fixes breaking changes in eslint. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Lechner <david@pybricks.com>
This commit is contained in:
co-authored by
David Lechner
parent
b850ff86fc
commit
9be97c7fdd
+1
-1
@@ -164,7 +164,7 @@
|
||||
"eslint-plugin-react": "^7.31.11",
|
||||
"eslint-plugin-total-functions": "^6.0.0",
|
||||
"eslint-webpack-plugin": "^3.2.0",
|
||||
"prettier": "^2.8.1"
|
||||
"prettier": "^2.8.2"
|
||||
},
|
||||
"packageManager": "yarn@3.3.0",
|
||||
"resolutions": {
|
||||
|
||||
+2
-2
@@ -31,7 +31,7 @@ export type AlertDomain = keyof typeof alertDomains;
|
||||
* Gets the type of available specific alerts for a domain.
|
||||
* @template D The domain.
|
||||
*/
|
||||
export type AlertSpecific<D extends AlertDomain> = keyof typeof alertDomains[D];
|
||||
export type AlertSpecific<D extends AlertDomain> = keyof (typeof alertDomains)[D];
|
||||
|
||||
/**
|
||||
* Gets the instance type of the object in the lookup table.
|
||||
@@ -41,7 +41,7 @@ export type AlertSpecific<D extends AlertDomain> = keyof typeof alertDomains[D];
|
||||
type AlertInstance<
|
||||
D extends AlertDomain,
|
||||
S extends AlertSpecific<D>,
|
||||
> = typeof alertDomains[D][S] extends CreateToast<infer P, infer A>
|
||||
> = (typeof alertDomains)[D][S] extends CreateToast<infer P, infer A>
|
||||
? CreateToast<P, A>
|
||||
: never;
|
||||
|
||||
|
||||
@@ -2496,7 +2496,7 @@ __metadata:
|
||||
postcss-loader: ^7.0.2
|
||||
postcss-normalize: ^10.0.1
|
||||
postcss-preset-env: ^7.8.3
|
||||
prettier: ^2.8.1
|
||||
prettier: ^2.8.2
|
||||
prompts: ^2.4.2
|
||||
prop-types: ^15.8.1
|
||||
pyodide: 0.22.0
|
||||
@@ -12614,12 +12614,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"prettier@npm:^2.8.1":
|
||||
version: 2.8.1
|
||||
resolution: "prettier@npm:2.8.1"
|
||||
"prettier@npm:^2.8.2":
|
||||
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