Skip to content

Commit acf4de8

Browse files
authored
deps: general updates (#356)
1 parent 5351cd7 commit acf4de8

6 files changed

Lines changed: 922 additions & 790 deletions

File tree

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"preview": "vitepress preview ."
88
},
99
"dependencies": {
10-
"vitepress": "2.0.0-alpha.3",
11-
"vitepress-plugin-group-icons": "^1.3.8"
10+
"vitepress": "2.0.0-alpha.8",
11+
"vitepress-plugin-group-icons": "^1.6.1"
1212
}
1313
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"license": "MIT",
2525
"devDependencies": {
2626
"@biomejs/biome": "^1.9.4",
27-
"@changesets/cli": "^2.29.2",
28-
"tsx": "^4.19.3",
29-
"turbo": "^2.5.0"
27+
"@changesets/cli": "^2.29.5",
28+
"tsx": "^4.20.3",
29+
"turbo": "^2.5.4"
3030
},
3131
"packageManager": "yarn@4.4.1"
3232
}

packages/tempo-md/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@
3939
"types": "tsc --noEmit"
4040
},
4141
"devDependencies": {
42-
"@rslib/core": "^0.6.1",
43-
"@types/node": "^22.13.13",
44-
"@vitest/coverage-istanbul": "^3.0.9",
45-
"@vitest/coverage-v8": "^3.1.2",
42+
"@rslib/core": "^0.10.5",
43+
"@types/node": "^24.0.13",
44+
"@vitest/coverage-istanbul": "^3.2.4",
45+
"@vitest/coverage-v8": "^3.2.4",
4646
"consola": "^3.4.2",
47-
"tsx": "^4.19.3",
48-
"type-fest": "^4.38.0",
49-
"typedoc": "^0.28.2",
50-
"typedoc-plugin-markdown": "^4.6.3",
51-
"typescript": "^5.8.2",
52-
"vitest": "^3.1.2"
47+
"tsx": "^4.20.3",
48+
"type-fest": "^4.41.0",
49+
"typedoc": "^0.28.7",
50+
"typedoc-plugin-markdown": "^4.7.0",
51+
"typescript": "^5.8.3",
52+
"vitest": "^3.2.4"
5353
},
5454
"dependencies": {
55-
"yaml": "^2.7.0"
55+
"yaml": "^2.8.0"
5656
}
5757
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { defineConfig } from 'vitest/config';
2+
3+
export default defineConfig({
4+
test: {
5+
globals: true,
6+
environment: 'node',
7+
css: true,
8+
coverage: {
9+
provider: 'istanbul',
10+
reporter: ['text', 'json', 'json-summary', 'html'],
11+
include: ['src/**/*.ts'],
12+
all: true,
13+
thresholds: {
14+
branches: 100,
15+
functions: 100,
16+
lines: 100,
17+
statements: 100,
18+
},
19+
},
20+
testTimeout: 15000,
21+
},
22+
});

packages/tempo/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@
3939
"types": "tsc --noEmit"
4040
},
4141
"devDependencies": {
42-
"@rslib/core": "^0.6.1",
43-
"@types/node": "^22.13.13",
44-
"@vitest/coverage-istanbul": "^3.0.9",
42+
"@rslib/core": "^0.10.5",
43+
"@types/node": "^24.0.13",
44+
"@vitest/coverage-istanbul": "^3.2.4",
4545
"consola": "^3.4.2",
46-
"tsx": "^4.19.3",
47-
"type-fest": "^4.38.0",
48-
"typedoc": "^0.28.2",
49-
"typedoc-plugin-markdown": "^4.6.3",
50-
"typescript": "^5.8.2",
51-
"vitest": "^3.1.2"
46+
"tsx": "^4.20.3",
47+
"type-fest": "^4.41.0",
48+
"typedoc": "^0.28.7",
49+
"typedoc-plugin-markdown": "^4.7.0",
50+
"typescript": "^5.8.3",
51+
"vitest": "^3.2.4"
5252
},
5353
"dependencies": {
5454
"@joggr/tempo-md": "workspace:*",
55-
"yaml": "^2.7.0"
55+
"yaml": "^2.8.0"
5656
}
5757
}

0 commit comments

Comments
 (0)