aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2023-01-17 19:06:09 +0100
committerGitHub <[email protected]>2023-01-17 19:06:09 +0100
commit9c47bcc2e0f9de443e7a9575c44e315f220b863d (patch)
tree01207c8fc804c6b239591e1b65ff9a5a488d0fdf
parent027e1dd5dfe94cbd4d4bd53bafc0f69285412f62 (diff)
downloadfaker-9c47bcc2e0f9de443e7a9575c44e315f220b863d.tar.xz
faker-9c47bcc2e0f9de443e7a9575c44e315f220b863d.zip
chore(deps): update dependency prettier to v2.8.3 (#1726)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Shinigami92 <[email protected]>
-rw-r--r--package.json2
-rw-r--r--pnpm-lock.yaml20
-rw-r--r--src/modules/color/index.ts4
-rw-r--r--src/modules/system/index.ts2
4 files changed, 14 insertions, 14 deletions
diff --git a/package.json b/package.json
index 0e6781b5..7e771632 100644
--- a/package.json
+++ b/package.json
@@ -110,7 +110,7 @@
"mime-db": "~1.52.0",
"npm-run-all": "~4.1.5",
"picocolors": "~1.0.0",
- "prettier": "2.8.1",
+ "prettier": "2.8.3",
"prettier-plugin-organize-imports": "~3.2.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 526c9919..a184443b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -30,7 +30,7 @@ specifiers:
mime-db: ~1.52.0
npm-run-all: ~4.1.5
picocolors: ~1.0.0
- prettier: 2.8.1
+ prettier: 2.8.3
prettier-plugin-organize-imports: ~3.2.1
react: ~18.2.0
react-dom: ~18.2.0
@@ -73,13 +73,13 @@ devDependencies:
eslint-define-config: 1.14.0
eslint-gitignore: [email protected]
eslint-plugin-jsdoc: [email protected]
- eslint-plugin-prettier: 4.2.1_32m5uc2milwdw3tnkcq5del26y
+ eslint-plugin-prettier: 4.2.1_do5yx3dogbskqc4h5x5ilvlwyy
glob: 8.0.3
mime-db: 1.52.0
npm-run-all: 4.1.5
picocolors: 1.0.0
- prettier: 2.8.1
- prettier-plugin-organize-imports: 3.2.1_2gbcgqmzq2pxiocqw2qs7hdeqe
+ prettier: 2.8.3
+ prettier-plugin-organize-imports: 3.2.1_uhxzhaxu465qzax2tftpee5s7i
react: 18.2.0
react-dom: [email protected]
rimraf: 3.0.2
@@ -2431,7 +2431,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-prettier/4.2.1_32m5uc2milwdw3tnkcq5del26y:
+ /eslint-plugin-prettier/4.2.1_do5yx3dogbskqc4h5x5ilvlwyy:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2444,7 +2444,7 @@ packages:
dependencies:
eslint: 8.31.0
eslint-config-prettier: [email protected]
- prettier: 2.8.1
+ prettier: 2.8.3
prettier-linter-helpers: 1.0.0
dev: true
@@ -4002,7 +4002,7 @@ packages:
fast-diff: 1.2.0
dev: true
- /prettier-plugin-organize-imports/3.2.1_2gbcgqmzq2pxiocqw2qs7hdeqe:
+ /prettier-plugin-organize-imports/3.2.1_uhxzhaxu465qzax2tftpee5s7i:
resolution: {integrity: sha512-bty7C2Ecard5EOXirtzeCAqj4FU4epeuWrQt/Z+sh8UVEpBlBZ3m3KNPz2kFu7KgRTQx/C9o4/TdquPD1jOqjQ==}
peerDependencies:
'@volar/vue-language-plugin-pug': ^1.0.4
@@ -4015,12 +4015,12 @@ packages:
'@volar/vue-typescript':
optional: true
dependencies:
- prettier: 2.8.1
+ prettier: 2.8.3
typescript: 4.9.4
dev: true
- /prettier/2.8.1:
- resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==}
+ /prettier/2.8.3:
+ resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
diff --git a/src/modules/color/index.ts b/src/modules/color/index.ts
index 23e41694..62a5fa0d 100644
--- a/src/modules/color/index.ts
+++ b/src/modules/color/index.ts
@@ -27,8 +27,8 @@ export const CSS_FUNCTIONS = [
'color',
] as const;
-export type CSSFunction = typeof CSS_FUNCTIONS[number];
-export type CSSSpace = typeof CSS_SPACES[number];
+export type CSSFunction = (typeof CSS_FUNCTIONS)[number];
+export type CSSSpace = (typeof CSS_SPACES)[number];
export type StringColorFormat = 'css' | 'binary';
export type NumberColorFormat = 'decimal';
export type ColorFormat = StringColorFormat | NumberColorFormat;
diff --git a/src/modules/system/index.ts b/src/modules/system/index.ts
index 202f9899..e5413622 100644
--- a/src/modules/system/index.ts
+++ b/src/modules/system/index.ts
@@ -250,7 +250,7 @@ export class SystemModule {
*/
networkInterface(
options: {
- interfaceType?: typeof commonInterfaceTypes[number];
+ interfaceType?: (typeof commonInterfaceTypes)[number];
interfaceSchema?: keyof typeof commonInterfaceSchemas;
} = {}
): string {