Skip to content

Commit

Permalink
Update for Deno 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonychu committed Jul 18, 2020
1 parent 96ea592 commit 0d4d073
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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! 🦕

---

Expand Down
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -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";
2 changes: 1 addition & 1 deletion worker_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit 0d4d073

Please sign in to comment.