I've set up an apache2 server and have located my library at http://example.com/lib/deno/test@1.0.0/ and then created a 301 redirect from http://example.com/lib/deno/test/ to the former. In VS Code (using deno plugin) I noticed that when I import something like https://deno.land/std/http/server.ts I get a warning message:
Implicitly using latest version (0.140.0) for https://deno.land/std/http/server.ts deno(deno-warn)
Following the url it re-directs to https://deno.land/std@1.140.0/http/server.ts
However when I import my own http://example.com/lib/deno/test/mod.ts I do not get a similar message. Is this warning somehow hard coded to only work with deno.land or am I not hosting things correctly?