deploy exclusion

This commit is contained in:
Seth Trowbridge 2023-10-16 13:29:10 -04:00
parent 7824b47634
commit 4f90a33a93
1 changed files with 7 additions and 6 deletions

13
cli.tsx
View File

@ -99,8 +99,8 @@ if(arg._.length)
}
case "cloud" :
{
let useToken = await collect("DENO_DEPLOY_TOKEN", arg, env);
let useProject = await collect("DENO_DEPLOY_PROJECT", arg, env);
const useToken = await collect("DENO_DEPLOY_TOKEN", arg, env);
const useProject = await collect("DENO_DEPLOY_PROJECT", arg, env);
let scanProd:string[]|string|null = prompt(`Do you want to deploy to *production*?`);
if(scanProd)
@ -113,7 +113,7 @@ if(arg._.length)
scanProd = [];
}
await SubProcess([
const command = [
"run",
"-A",
"--no-lock",
@ -123,10 +123,11 @@ if(arg._.length)
`--project=${useProject}`,
`--token=${useToken}`,
`--import-map=${imports.path}`,
`--exclude=.*,.*/,`,
...scanProd,
...Deno.args,
RootHost+"run.tsx"]);
RootHost+"run.tsx"];
await SubProcess(command);
break;
}