diff --git a/README.md b/README.md index 61bfdf8..753dd5b 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,7 @@ Check out the [new project template](https://github.com/anthonychu/azure-functio * Linux, macOS, Windows * [Deno](https://deno.land/x/install/) - Tested on: - - `1.0.2`, `1.0.4`, `1.0.5`, `1.1.0`, `1.1.1` - - `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)) + - `1.2.0` * [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 * [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest#install) - needed to deploy the app * `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! 1. The deployment output will print out the URL of the deployed function. Open to the URL to run your function. -🎉 Congratulations! You've deployed your first Azure Functions app in Deno! 🦕 +### 🎉 Congratulations! + +You've deployed your first Azure Functions app in Deno! 🦕 --- diff --git a/deps.ts b/deps.ts index 422e5aa..feb8f09 100644 --- a/deps.ts +++ b/deps.ts @@ -1,10 +1,10 @@ -export { parse } from "https://deno.land/std@0.56.0/flags/mod.ts"; -export { readZip } from "https://raw.githubusercontent.com/anthonychu/deno-zip/std-v0.56.0/mod.ts"; +export { parse } from "https://deno.land/std@0.61.0/flags/mod.ts"; +export { readZip } from "https://raw.githubusercontent.com/anthonychu/deno-zip/std-v0.61.0/mod.ts"; export { ensureDir, move, walk, readJson, writeJson, -} from "https://deno.land/std@0.56.0/fs/mod.ts"; +} from "https://deno.land/std@0.61.0/fs/mod.ts"; export * from "./worker_deps.ts"; diff --git a/worker_deps.ts b/worker_deps.ts index 06a277a..dfe77b3 100644 --- a/worker_deps.ts +++ b/worker_deps.ts @@ -3,4 +3,4 @@ export { Router, Context as OakContext, Body, -} from "https://deno.land/x/oak@v5.1.0/mod.ts"; +} from "https://deno.land/x/oak@v6.0.1/mod.ts";