-
-
Notifications
You must be signed in to change notification settings - Fork 944
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 refactor/location/zipCode
- Loading branch information
Showing
11 changed files
with
781 additions
and
626 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,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/[email protected].0"`. | ||
It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/[email protected].1"`. | ||
::: | ||
|
||
### 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
{ | ||
"name": "@faker-js/faker", | ||
"version": "9.0.0", | ||
"version": "9.0.1", | ||
"description": "Generate massive amounts of fake contextual data", | ||
"scripts": { | ||
"clean": "rimraf coverage .eslintcache dist docs/.vitepress/cache docs/.vitepress/dist node_modules", | ||
"build:clean": "rimraf dist", | ||
"build:code": "tsup-node", | ||
"build:types": "tsc --project tsconfig.build.json", | ||
"build": "run-s build:clean build:code build:types", | ||
"build": "run-s build:clean build:code", | ||
"generate": "run-s generate:locales generate:api-docs", | ||
"generate:api-docs": "tsx ./scripts/apidocs.ts", | ||
"generate:locales": "tsx ./scripts/generate-locales.ts", | ||
|
@@ -65,26 +64,37 @@ | |
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs", | ||
"default": "./dist/index.js" | ||
"require": { | ||
"types": "./dist/index.d.cts", | ||
"default": "./dist/index.cjs" | ||
}, | ||
"default": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
}, | ||
"./locale/*": { | ||
"types": "./dist/types/locale/*.d.ts", | ||
"import": "./dist/locale/*.js", | ||
"require": "./dist/locale/*.cjs", | ||
"default": "./dist/locale/*.js" | ||
"require": { | ||
"types": "./dist/locale/*.d.cts", | ||
"default": "./dist/locale/*.cjs" | ||
}, | ||
"default": { | ||
"types": "./dist/locale/*.d.ts", | ||
"default": "./dist/locale/*.js" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.js", | ||
"types": "index.d.ts", | ||
"types": "dist/index.d.ts", | ||
"typesVersions": { | ||
">=5.0": { | ||
"*": [ | ||
"dist/types/*" | ||
".": [ | ||
"./dist/index.d.ts" | ||
], | ||
"locale/*": [ | ||
"./dist/locale/*.d.ts" | ||
] | ||
} | ||
}, | ||
|
@@ -94,32 +104,32 @@ | |
], | ||
"devDependencies": { | ||
"@actions/github": "6.0.0", | ||
"@algolia/client-search": "5.2.3", | ||
"@algolia/client-search": "5.4.1", | ||
"@eslint-types/deprecation": "2.0.0-1", | ||
"@eslint-types/jsdoc": "48.2.2", | ||
"@eslint-types/prettier": "5.1.3", | ||
"@eslint-types/typescript-eslint": "7.5.0", | ||
"@eslint-types/unicorn": "52.0.0", | ||
"@eslint/compat": "1.1.1", | ||
"@eslint/js": "9.9.1", | ||
"@stylistic/eslint-plugin": "2.7.2", | ||
"@types/node": "20.16.2", | ||
"@eslint/js": "9.10.0", | ||
"@stylistic/eslint-plugin": "2.8.0", | ||
"@types/node": "20.16.5", | ||
"@types/sanitize-html": "2.13.0", | ||
"@types/semver": "7.5.8", | ||
"@types/validator": "13.12.1", | ||
"@vitest/coverage-v8": "2.0.5", | ||
"@vitest/ui": "2.0.5", | ||
"@vueuse/core": "10.11.1", | ||
"commit-and-tag-version": "12.4.2", | ||
"cypress": "13.14.1", | ||
"eslint": "9.9.1", | ||
"commit-and-tag-version": "12.4.3", | ||
"cypress": "13.14.2", | ||
"eslint": "9.10.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"eslint-define-config": "2.1.0", | ||
"eslint-plugin-jsdoc": "50.2.2", | ||
"eslint-plugin-jsdoc": "50.2.3", | ||
"eslint-plugin-prettier": "5.2.1", | ||
"eslint-plugin-unicorn": "55.0.0", | ||
"eslint-plugin-vitest": "0.5.4", | ||
"npm-run-all2": "6.2.2", | ||
"npm-run-all2": "6.2.3", | ||
"prettier": "3.3.3", | ||
"prettier-plugin-organize-imports": "4.0.0", | ||
"prettier-plugin-packagejson": "2.5.2", | ||
|
@@ -128,15 +138,15 @@ | |
"semver": "7.6.3", | ||
"ts-morph": "23.0.0", | ||
"tsup": "8.2.4", | ||
"tsx": "4.19.0", | ||
"tsx": "4.19.1", | ||
"typescript": "5.5.4", | ||
"typescript-eslint": "8.3.0", | ||
"typescript-eslint": "8.5.0", | ||
"validator": "13.12.0", | ||
"vite": "5.4.2", | ||
"vite": "5.4.5", | ||
"vitepress": "1.3.4", | ||
"vitest": "2.0.5", | ||
"vue": "3.4.38", | ||
"vue-tsc": "2.1.2" | ||
"vue": "3.5.5", | ||
"vue-tsc": "2.1.6" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
Oops, something went wrong.