Skip to content

Commit

Permalink
Deno simplify shared tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Jul 27, 2024
1 parent 017d38b commit e719583
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Deno/deno.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"tasks": {
"simple:start": "deno task build && export COMPONENT=SimpleServer && deno task tool:start:main",
"simple:publish": "deno task build && export COMPONENT=SimpleServer && deno task tool:publish:main",
"simple:compile": "deno task build && export COMPONENT=SimpleServer && deno task tool:compile:main",
"simple:start": "export COMPONENT=SimpleServer && deno task tool:start:main",
"simple:publish": "export COMPONENT=SimpleServer && deno task tool:publish:main",
"simple:compile": "export COMPONENT=SimpleServer && deno task tool:compile:main",
"test": "deno task build && deno test -A",
"build": "deno task tool:build:gweb && deno task tool:build:deno",
"tool:start:main": "deno run -A \"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\"",
"tool:publish:main": "deployctl deploy --entrypoint=\"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\" --import-map=./deno.json",
"tool:compile:main": "deno compile -A -o \"./$(echo $COMPONENT).exe\" \"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\"",
"tool:start:main": "deno task build && deno run -A \"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\"",
"tool:publish:main": "deno task build && deployctl deploy --entrypoint=\"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\" --import-map=./deno.json",
"tool:compile:main": "deno task build && deno compile -A -o \"./$(echo $COMPONENT).exe\" \"./Builds/$(echo $COMPONENT)_Default Web Server/main.ts\"",
"tool:build:gweb": "\"C:/Program Files/National Instruments/G Web Development Software/gwebcli.exe\" distribution -p Deno.gwebproject --dn \"All Packages.lvdist\"",
"tool:build:deno": "deno run -A ./Support/convert-html.ts ./Builds/**/*.via.txt",
"tool:rebuild-vireo-data-url": "deno run -A ./Support/make-vireo-dataurl.ts",
Expand Down

0 comments on commit e719583

Please sign in to comment.