Skip to content

Commit

Permalink
Update tasks to compile for multiple architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
trevormunoz committed Jan 23, 2022
1 parent 96a78c5 commit bf6bfeb
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,28 @@
"--allow-net=api.airtable.com",
"--allow-read=.",
"--allow-write=.",
"--output=lda-export",
"--output=./dist/lda-export-${input:compileTarget}",
"--target=${input:compileTarget}",
"./src/main.ts"
],
"problemMatcher": [
"$deno"
],
"label": "deno: compile"
}
],
"inputs": [
{
"type": "pickString",
"id": "compileTarget",
"description": "What target architecture should the compile be for?",
"options": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
],
"default": "aarch64-apple-darwin",
}
]
}

0 comments on commit bf6bfeb

Please sign in to comment.