fix: revert hello-deno std lib to pre 1.0, see denoland/deno#5267 (#2467)

Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>
This commit is contained in:
Grant Timmerman 2020-05-13 12:55:57 -07:00 committed by GitHub
parent f5ac1101b2
commit 39531287d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ cd knative-docs/docs/serving/samples/hello-world/helloworld-deno
1. Create a new file named `deps.ts` and paste the following script:
```ts
export { serve } from "https://deno.land/std@v1.0.0-rc2/http/server.ts";
export { serve } from "https://deno.land/std@std@0.50.0/http/server.ts";
```
1. Create a new file named `main.ts` and paste the following script:

View File

@ -1 +1 @@
export { serve } from "https://deno.land/std@v1.0.0-rc2/http/server.ts";
export { serve } from "https://deno.land/std@0.50.0/http/server.ts";