Skip to content

Commit c642239

Browse files
committed
Merge branch 'main' into fs-fixture
2 parents 5c6a598 + e33c0e6 commit c642239

7 files changed

Lines changed: 231 additions & 1350 deletions

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
32
"version": "0.2.0",
43
"configurations": [
54
{
65
"type": "node",
76
"request": "launch",
87
"name": "Debug Current Test File",
98
"autoAttachChildProcesses": true,
9+
"skipFiles": [],
1010
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
1111
"args": ["run", "${relativeFile}"],
1212
"smartStep": true,

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"typescript.tsdk": "node_modules/typescript/lib"
2+
"js/ts.tsdk.path": "node_modules/typescript/lib",
3+
"editor.defaultFormatter": "oxc.oxc-vscode"
34
}

package.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"main": "dist/index.js",
77
"scripts": {
8-
"build": "rollup -c",
8+
"build": "rolldown -c",
99
"test": "vitest",
1010
"test:watch": "pnpm test --watch",
1111
"typecheck": "tsc",
@@ -38,19 +38,13 @@
3838
"@changesets/cli": "^2.29.3",
3939
"@changesets/types": "^6.1.0",
4040
"@changesets/write": "^0.4.0",
41-
"@rollup/plugin-commonjs": "^28.0.3",
42-
"@rollup/plugin-json": "^6.1.0",
43-
"@rollup/plugin-node-resolve": "^16.0.1",
44-
"@rollup/plugin-terser": "^0.4.4",
4541
"@types/node": "^24.12.2",
4642
"@types/semver": "^7.5.0",
47-
"builtin-modules": "^5.0.0",
48-
"esbuild": "^0.25.4",
4943
"fs-fixture": "^2.13.0",
5044
"oxfmt": "^0.48.0",
51-
"rollup": "^4.40.2",
45+
"rolldown": "^1.0.1",
5246
"typescript": "^5.8.3",
53-
"vitest": "^4.1.5"
47+
"vitest": "^4.1.6"
5448
},
5549
"engines": {
5650
"node": ">=24"

0 commit comments

Comments
 (0)