Skip to content

Commit 0d4d073

Browse files
committed
Update for Deno 1.2.0
1 parent 96ea592 commit 0d4d073

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ Check out the [new project template](https://github.com/anthonychu/azure-functio
5959
* Linux, macOS, Windows
6060
* [Deno](https://deno.land/x/install/)
6161
- Tested on:
62-
- `1.0.2`, `1.0.4`, `1.0.5`, `1.1.0`, `1.1.1`
63-
- `1.1.0` and `1.1.1` can only be deployed to Linux (see [#13](https://github.com/anthonychu/azure-functions-deno-worker/issues/13))
62+
- `1.2.0`
6463
* [Azure Functions Core Tools V3](https://github.com/Azure/azure-functions-core-tools#azure-functions-core-tools) - needed for running the app locally and deploying it
6564
* [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest#install) - needed to deploy the app
6665
* `denofunc` CLI - see [below](#install-the-denofunc-cli)
@@ -165,7 +164,9 @@ Now that you've run the function app locally, it's time to deploy it to Azure!
165164

166165
1. The deployment output will print out the URL of the deployed function. Open to the URL to run your function.
167166

168-
πŸŽ‰ Congratulations! You've deployed your first Azure Functions app in Deno! πŸ¦•
167+
### πŸŽ‰ Congratulations!
168+
169+
You've deployed your first Azure Functions app in Deno! πŸ¦•
169170
170171
---
171172

β€Ždeps.tsβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
export { parse } from "https://deno.land/std@0.56.0/flags/mod.ts";
2-
export { readZip } from "https://raw.githubusercontent.com/anthonychu/deno-zip/std-v0.56.0/mod.ts";
1+
export { parse } from "https://deno.land/std@0.61.0/flags/mod.ts";
2+
export { readZip } from "https://raw.githubusercontent.com/anthonychu/deno-zip/std-v0.61.0/mod.ts";
33
export {
44
ensureDir,
55
move,
66
walk,
77
readJson,
88
writeJson,
9-
} from "https://deno.land/std@0.56.0/fs/mod.ts";
9+
} from "https://deno.land/std@0.61.0/fs/mod.ts";
1010
export * from "./worker_deps.ts";

β€Žworker_deps.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export {
33
Router,
44
Context as OakContext,
55
Body,
6-
} from "https://deno.land/x/oak@v5.1.0/mod.ts";
6+
} from "https://deno.land/x/oak@v6.0.1/mod.ts";

0 commit comments

Comments
Β (0)