git clone https://github.com/TRomesh/ultra-pokemon.git
cd ultra-pokemon
deno task devRequires Deno 1.20.6+
deno task dev will start a local server on port 8000.
deno task vendor will create a vendored import map: vendorMap.json.
You can plug this back into Ultra in the deno.json config file.
{
"tasks": {
// tasks omitted for clarity
},
"importMap": "vendorMap.json" // use either importMap.json or vendorMap.json
}Note: You will need to restart the server when swapping import maps.
deno task start will run the server in production mode. Cached ESM imports,
and no websocket reloader. Uses whichever import map you have defined.
deno task cache will refresh the cache for server.ts. This can be useful if
you run into any issues when swapping in between vendored and CDN import maps.