Skip to content

Commit

Permalink
Merge branch 'next' into deprecate/finance/maskedNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Oct 23, 2024
2 parents 797f238 + e3858f2 commit 8417db9
Show file tree
Hide file tree
Showing 13 changed files with 555 additions and 386 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "FakerJs",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22@sha256:79c4181532784148abe5d0dd37505f420674990fd104f8294fd06155003fa442",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22@sha256:dc2c3654370fe92a55daeefe9d2d95839d85bdc1f68f7fd4ab86621f49e5818a",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ lib-cov
coverage
*.lcov

# Vitest Temp files
tsconfig.vitest-temp.json

# nyc test coverage
.nyc_output

Expand Down
12 changes: 12 additions & 0 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ yarn add @faker-js/faker --dev

:::

## Faker Modules

Faker has three types of modules:

- Modules for basic datatypes: [`datatype`](/api/datatype), [`date`](/api/date), [`number`](/api/number) and [`string`](/api/string)
- Topic specific modules, such as [`animal`](/api/animal), [`food`](/api/food) and many more
- Lastly, the [`helpers`](/api/datatype) module, with various utility methods to use with your own data (or data generated by other Faker methods)

For a full list of modules, go to our [Api Search](/api/) page.

If you would like to know how to use Faker, go to our [Usage Guide](/guide/usage) page.

## Community

If you have questions or need help, reach out to the community via [Discord](https://chat.fakerjs.dev) and [GitHub Discussions](https://github.com/faker-js/faker/discussions).
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,27 +104,27 @@
],
"devDependencies": {
"@actions/github": "6.0.0",
"@eslint/compat": "1.2.0",
"@eslint/js": "9.12.0",
"@eslint/compat": "1.2.1",
"@eslint/js": "9.13.0",
"@stylistic/eslint-plugin": "2.9.0",
"@types/eslint__js": "8.42.3",
"@types/node": "20.16.11",
"@types/node": "20.16.15",
"@types/sanitize-html": "2.13.0",
"@types/semver": "7.5.8",
"@types/validator": "13.12.2",
"@vitest/coverage-v8": "2.1.2",
"@vitest/coverage-v8": "2.1.3",
"@vitest/eslint-plugin": "1.1.7",
"@vitest/ui": "2.1.2",
"@vitest/ui": "2.1.3",
"@vueuse/core": "11.1.0",
"commit-and-tag-version": "12.5.0",
"cypress": "13.15.0",
"eslint": "9.12.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.0",
"jiti": "2.3.3",
"npm-run-all2": "6.2.3",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.3",
Expand All @@ -135,15 +135,15 @@
"tsup": "8.3.0",
"tsx": "4.19.1",
"typescript": "5.6.3",
"typescript-eslint": "8.10.0",
"typescript-eslint": "8.11.0",
"validator": "13.12.0",
"vite": "5.4.8",
"vite": "5.4.10",
"vitepress": "1.4.1",
"vitest": "2.1.2",
"vitest": "2.1.3",
"vue": "3.5.12",
"vue-tsc": "2.1.6"
},
"packageManager": "pnpm@9.12.1",
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
Expand Down
Loading

0 comments on commit 8417db9

Please sign in to comment.