deploy exclusion
This commit is contained in:
parent
7824b47634
commit
4f90a33a93
13
cli.tsx
13
cli.tsx
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user