Skip to content

Commit 7773f22

Browse files
committed
chore: update faker to v10
1 parent 079545b commit 7773f22

5 files changed

Lines changed: 74 additions & 60 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"devDependencies": {
1313
"npm-run-all2": "8.0.4",
1414
"tsx": "4.20.3",
15-
"typescript": "5.8.3"
15+
"typescript": "5.9.0-dev.20250710"
1616
},
1717
"dependencies": {
1818
"@faker-js/faker": "9.9.0"

playgrounds/cjs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"type": "commonjs",
66
"scripts": {
77
"all": "pnpm run-s build test",
8-
"build": "pnpm run-s build:node10 build:node16 build:bundler",
8+
"build": "pnpm run-s build:node10 build:node20 build:bundler",
99
"build:node10": "tsc",
10-
"build:node16": "tsc --project tsconfig.node16.json",
10+
"build:node20": "tsc --project tsconfig.node20.json --moduleResolution Node20 --module Node20",
1111
"build:bundler": "tsc --project tsconfig.bundler.json",
1212
"test": "pnpm run-s test:js test:ts",
1313
"test:js": "node index.js",
14-
"test:ts": "pnpm run-s test:ts:node10 test:ts:node16 test:ts:bundler",
14+
"test:ts": "pnpm run-s test:ts:node10 test:ts:node20 test:ts:bundler",
1515
"test:ts:node10": "tsx index.ts",
16-
"test:ts:node16": "tsx --tsconfig tsconfig.node16.json index.ts",
16+
"test:ts:node20": "tsx --tsconfig tsconfig.node20.json index.ts",
1717
"test:ts:bundler": "tsx --tsconfig tsconfig.bundler.json index.ts"
1818
}
1919
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"module": "Node18",
5+
"moduleResolution": "NodeNext"
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"module": "Node20",
5+
"moduleResolution": "Node20"
6+
}
7+
}

pnpm-lock.yaml

Lines changed: 55 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)