From 2e63a5ab3c2b65cd64f70c2eb0e3539b86b66a10 Mon Sep 17 00:00:00 2001 From: hasundue Date: Mon, 12 Feb 2024 19:27:52 +0900 Subject: [PATCH] chore(task/lock): stage lockfile after update --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 494e365..6ae0357 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { "cache": "deno cache ./**/*.ts --lock", - "lock": "deno task cache --lock-write", + "lock": "deno task cache --lock-write && git add deno.lock", "check": "deno check ./**/*.ts", "test": "deno test -A --no-check --parallel", "build": "mkdir -p ./dist && deno run -A ./bin/bundle.ts",