fix(cli): parse commands before loading environment

This commit is contained in:
Tianyi Cui
2026-08-07 23:28:17 +08:00
parent 4ee93f7944
commit 95366f6197
2 changed files with 13 additions and 3 deletions

View File

@@ -24,14 +24,13 @@ function readVersion(): string {
return typeof manifest.version === 'string' ? manifest.version : '0.0.0'
}
const environment = loadLayeredEnv('dsh')
const invocation = parseDshArgs(process.argv.slice(2), readVersion())
switch (invocation.mode) {
case 'profile': {
const { runProfile } = await import('./profile-boot.ts')
await runProfile({
environment,
environment: loadLayeredEnv('dsh'),
profile: invocation.profile,
patchFiles: invocation.patches,
...invocation.task !== undefined && { task: invocation.task },
@@ -40,7 +39,7 @@ switch (invocation.mode) {
}
case 'web': {
const { runWeb } = await import('./web.ts')
await runWeb(invocation, environment)
await runWeb(invocation, loadLayeredEnv('dsh'))
break
}
case 'plugin': {