diff --git a/Deno/deno.json b/Deno/deno.json index 94b98dd2..9ce52148 100644 --- a/Deno/deno.json +++ b/Deno/deno.json @@ -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",