From 21704c436bb9ac5b7d5045d71c683726fd5d7c23 Mon Sep 17 00:00:00 2001 From: Reda Bacha Date: Thu, 5 Sep 2024 02:33:09 +0000 Subject: [PATCH] Update deploy instructions in deno template README.md --- templates/deno/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/deno/README.md b/templates/deno/README.md index 534f13a7219..0b215a5fbfb 100644 --- a/templates/deno/README.md +++ b/templates/deno/README.md @@ -83,13 +83,13 @@ deploying to [Deno Deploy](https://deno.com/deploy). 2. [Create a new Deno Deploy project](https://dash.deno.com/new) for this app. -3. Replace `` in the `deploy` script in `package.json` +3. Replace `` in the `deploy` script in `deno.jsonc` with your Deno Deploy project name: -```json filename=package.json +```json filename=deno.jsonc { - "scripts": { - "deploy": "deployctl deploy --project= --include=build,server-prod.ts ./server.prod.ts" + "tasks": { + "deploy": "deployctl deploy --prod --include=deno.jsonc,deno.lock,build,server.production.ts --project= ./server.production.ts" } } ```