Skip to content

Commit

Permalink
Merge branch 'next' into local/ja/add-direction
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Jun 17, 2023
2 parents 8488855 + 36d1d3a commit df756a0
Show file tree
Hide file tree
Showing 23 changed files with 677 additions and 168 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const { faker } = require('@faker-js/faker');

export function createRandomUser(): User {
return {
userId: faker.datatype.uuid(),
userId: faker.string.uuid(),
username: faker.internet.userName(),
email: faker.internet.email(),
avatar: faker.image.avatar(),
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ interface User { ... }

function createRandomUser(): User {
return {
_id: faker.datatype.uuid(),
_id: faker.string.uuid(),
avatar: faker.image.avatar(),
birthday: faker.date.birthdate(),
email: faker.internet.email(),
Expand Down Expand Up @@ -198,7 +198,7 @@ function createRandomUser(): User {
const email = faker.internet.email({ firstName, lastName });

return {
_id: faker.datatype.uuid(),
_id: faker.string.uuid(),
avatar: faker.image.avatar(),
birthday: faker.date.birthdate(),
email,
Expand Down Expand Up @@ -238,7 +238,7 @@ function createRandomUser(): User {
]);

return {
_id: faker.datatype.uuid(),
_id: faker.string.uuid(),
avatar: faker.image.avatar(),
birthday: faker.date.birthdate(),
email,
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,26 +96,26 @@
"@algolia/client-search": "~4.17.1",
"@types/markdown-it": "~12.2.3",
"@types/node": "~20.2.5",
"@types/prettier": "~2.7.2",
"@types/react": "~18.2.7",
"@types/prettier": "~2.7.3",
"@types/react": "~18.2.8",
"@types/sanitize-html": "~2.9.0",
"@types/semver": "~7.5.0",
"@types/validator": "~13.7.17",
"@typescript-eslint/eslint-plugin": "~5.59.7",
"@typescript-eslint/parser": "~5.59.7",
"@vitest/coverage-c8": "~0.31.1",
"@vitest/ui": "~0.31.1",
"@typescript-eslint/eslint-plugin": "~5.59.8",
"@typescript-eslint/parser": "~5.59.8",
"@vitest/coverage-c8": "~0.31.4",
"@vitest/ui": "~0.31.4",
"@vueuse/core": "~10.1.2",
"c8": "~7.14.0",
"conventional-changelog-cli": "~2.2.2",
"cypress": "~12.13.0",
"esbuild": "~0.17.19",
"eslint": "~8.41.0",
"eslint": "~8.42.0",
"eslint-config-prettier": "~8.8.0",
"eslint-define-config": "~1.20.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-deprecation": "~1.4.1",
"eslint-plugin-jsdoc": "~45.0.0",
"eslint-plugin-jsdoc": "~46.2.4",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-vitest": "~0.2.5",
"glob": "~10.2.6",
Expand All @@ -130,12 +130,12 @@
"semver": "~7.5.1",
"standard-version": "~9.5.0",
"tsx": "~3.12.7",
"typedoc": "~0.24.7",
"typedoc": "~0.24.8",
"typescript": "~4.9.5",
"validator": "~13.9.0",
"vite": "~4.3.9",
"vitepress": "1.0.0-beta.1",
"vitest": "~0.31.1",
"vitest": "~0.31.4",
"vue": "~3.3.4"
},
"packageManager": "pnpm@8.5.1",
Expand Down
Loading

0 comments on commit df756a0

Please sign in to comment.