-
-
Notifications
You must be signed in to change notification settings - Fork 953
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into feat/number/exponentional-distribution
- Loading branch information
Showing
24 changed files
with
1,142 additions
and
900 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ const randomEmail = faker.internet.email(); // [email protected] | |
``` | ||
|
||
::: info Note | ||
It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v9.4.0"`. | ||
It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v9.5.0"`. | ||
::: | ||
|
||
### Alternative CDN links | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@faker-js/faker", | ||
"version": "9.4.0", | ||
"version": "9.5.0", | ||
"description": "Generate massive amounts of fake contextual data", | ||
"scripts": { | ||
"clean": "rimraf coverage .eslintcache dist docs/.vitepress/cache docs/.vitepress/dist node_modules", | ||
|
@@ -18,6 +18,9 @@ | |
"docs:dev:run": "vitepress dev docs", | ||
"docs:serve": "vitepress serve docs --port 5173", | ||
"docs:diff": "tsx ./scripts/diff.ts", | ||
"docs:test:e2e:ci": "run-s docs:build:ci docs:test:e2e:run", | ||
"docs:test:e2e:run": "run-p --race docs:serve \"cypress run\"", | ||
"docs:test:e2e:open": "run-p --race docs:serve \"cypress open\"", | ||
"format": "prettier --cache --write .", | ||
"lint": "eslint --cache --cache-strategy content .", | ||
"ts-check": "tsc", | ||
|
@@ -26,9 +29,6 @@ | |
"coverage": "vitest run --coverage", | ||
"integration-test": "vitest -c vitest.it-config.ts", | ||
"cypress": "cypress", | ||
"docs:test:e2e:ci": "run-s docs:build:ci docs:test:e2e:run", | ||
"docs:test:e2e:run": "run-p --race docs:serve \"cypress run\"", | ||
"docs:test:e2e:open": "run-p --race docs:serve \"cypress open\"", | ||
"release": "commit-and-tag-version --commit-all", | ||
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build", | ||
"preflight": "pnpm install && run-s generate format lint build test:update-snapshots ts-check" | ||
|
@@ -105,46 +105,46 @@ | |
"dist" | ||
], | ||
"devDependencies": { | ||
"@eslint/compat": "1.2.5", | ||
"@eslint/js": "9.18.0", | ||
"@stylistic/eslint-plugin": "2.12.1", | ||
"@eslint/compat": "1.2.6", | ||
"@eslint/js": "9.19.0", | ||
"@stylistic/eslint-plugin": "3.0.1", | ||
"@types/eslint__js": "8.42.3", | ||
"@types/node": "22.10.3", | ||
"@types/node": "22.13.0", | ||
"@types/sanitize-html": "2.13.0", | ||
"@types/semver": "7.5.8", | ||
"@types/validator": "13.12.2", | ||
"@vitest/coverage-v8": "2.1.8", | ||
"@vitest/eslint-plugin": "1.1.20", | ||
"@vitest/ui": "2.1.8", | ||
"@vueuse/core": "12.2.0", | ||
"@vitest/coverage-v8": "3.0.5", | ||
"@vitest/eslint-plugin": "1.1.25", | ||
"@vitest/ui": "3.0.5", | ||
"@vueuse/core": "12.5.0", | ||
"commit-and-tag-version": "12.5.0", | ||
"cypress": "13.17.0", | ||
"eslint": "9.18.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"cypress": "14.0.1", | ||
"eslint": "9.19.0", | ||
"eslint-config-prettier": "10.0.1", | ||
"eslint-plugin-file-progress": "3.0.1", | ||
"eslint-plugin-jsdoc": "50.6.1", | ||
"eslint-plugin-prettier": "5.2.1", | ||
"eslint-plugin-jsdoc": "50.6.3", | ||
"eslint-plugin-prettier": "5.2.3", | ||
"eslint-plugin-unicorn": "56.0.1", | ||
"jiti": "2.4.2", | ||
"npm-run-all2": "7.0.2", | ||
"prettier": "3.4.2", | ||
"prettier-plugin-organize-imports": "4.1.0", | ||
"prettier-plugin-packagejson": "2.5.6", | ||
"prettier-plugin-packagejson": "2.5.8", | ||
"rimraf": "5.0.10", | ||
"sanitize-html": "2.14.0", | ||
"semver": "7.6.3", | ||
"semver": "7.7.0", | ||
"ts-morph": "25.0.0", | ||
"tsup": "8.3.5", | ||
"tsup": "8.3.6", | ||
"tsx": "4.19.2", | ||
"typescript": "5.7.2", | ||
"typescript-eslint": "8.19.1", | ||
"typescript": "5.7.3", | ||
"typescript-eslint": "8.23.0", | ||
"validator": "13.12.0", | ||
"vitepress": "1.5.0", | ||
"vitest": "2.1.8", | ||
"vitepress": "1.6.3", | ||
"vitest": "3.0.5", | ||
"vue": "3.5.13", | ||
"vue-tsc": "2.2.0" | ||
}, | ||
"packageManager": "[email protected].2", | ||
"packageManager": "[email protected].4", | ||
"engines": { | ||
"node": ">=18.0.0", | ||
"npm": ">=9.0.0" | ||
|
Oops, something went wrong.