Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/snap-tests/command-helper/snap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For more info, run any command with the `--help` flag:
$ vp pack --help

Options:
--config-loader <loader> Config loader to use: auto, native, unrun (default: auto)
--config-loader <loader> Config loader to use: auto, native, tsx, unrun (default: auto)
--no-config Disable config file (default: true)
-f, --format <format> Bundle format: esm, cjs, iife, umd (default: esm)
--clean Clean output directory, --no-clean to disable
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/snap-tests/command-pack/snap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For more info, run any command with the `--help` flag:
$ vp pack --help

Options:
--config-loader <loader> Config loader to use: auto, native, unrun (default: auto)
--config-loader <loader> Config loader to use: auto, native, tsx, unrun (default: auto)
--no-config Disable config file (default: true)
-f, --format <format> Bundle format: esm, cjs, iife, umd (default: esm)
--clean Clean output directory, --no-clean to disable
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/pack-bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ cli
})
// Only support config file in vite.config.ts
// .option('-c, --config <filename>', 'Use a custom config file')
.option('--config-loader <loader>', 'Config loader to use: auto, native, unrun', {
.option('--config-loader <loader>', 'Config loader to use: auto, native, tsx, unrun', {
default: 'auto',
})
.option('--no-config', 'Disable config file')
Expand Down
26 changes: 15 additions & 11 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"@babel/types": "^7.28.5",
"@oxc-node/cli": "catalog:",
"@oxc-node/core": "catalog:",
"@vitejs/devtools": "^0.1.18",
"@vitejs/devtools": "^0.1.20",
"es-module-lexer": "^1.7.0",
"hookable": "^6.0.1",
"magic-string": "^0.30.21",
Expand All @@ -136,14 +136,14 @@
},
"peerDependencies": {
"@arethetypeswrong/core": "^0.18.1",
"@tsdown/css": "0.21.10",
"@tsdown/exe": "0.21.10",
"@tsdown/css": "0.22.0",
"@tsdown/exe": "0.22.0",
"@types/node": "^20.19.0 || >=22.12.0",
"@vitejs/devtools": "^0.1.0",
"@vitejs/devtools": "^0.1.18",
"esbuild": "^0.27.0 || ^0.28.0",
"jiti": ">=1.21.0",
"less": "^4.0.0",
"publint": "^0.3.0",
"publint": "^0.3.8",
"sass": "^1.70.0",
"sass-embedded": "^1.70.0",
"stylus": ">=0.54.8",
Expand All @@ -152,6 +152,7 @@
"tsx": "^4.8.1",
"typescript": "^5.0.0 || ^6.0.0",
"unplugin-unused": "^0.5.0",
"unrun": "*",
"yaml": "^2.4.2"
},
"peerDependenciesMeta": {
Expand All @@ -170,12 +171,18 @@
"publint": {
"optional": true
},
"tsx": {
"optional": true
},
"typescript": {
"optional": true
},
"unplugin-unused": {
"optional": true
},
"unrun": {
"optional": true
},
"@types/node": {
"optional": true
},
Expand Down Expand Up @@ -203,9 +210,6 @@
"terser": {
"optional": true
},
"tsx": {
"optional": true
},
"yaml": {
"optional": true
}
Expand All @@ -217,8 +221,8 @@
"node": "^20.19.0 || >=22.12.0"
},
"bundledVersions": {
"vite": "8.0.10",
"rolldown": "1.0.0-rc.18",
"tsdown": "0.21.10"
"vite": "8.0.11",
"rolldown": "1.0.0",
"tsdown": "0.22.0"
}
}
4 changes: 2 additions & 2 deletions packages/tools/.upstream-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"rolldown": {
"repo": "https://github.com/rolldown/rolldown.git",
"branch": "main",
"hash": "2c4a957beb41b9f896f9cb795da056c6638e2698"
"hash": "ac5c71025a639d394a0db9c3a921b7eda5d71a88"
},
"vite": {
"repo": "https://github.com/vitejs/vite.git",
"branch": "main",
"hash": "32c29780404c353f5a7c5ba4d06fc5e676741714"
"hash": "66f3194aa8e59924562575f0a98e7f4ae0acdd89"
}
}
Loading
Loading