From d796b8ac627764055de5a88b640c2f7650841a09 Mon Sep 17 00:00:00 2001 From: "Marek S. Lukasiewicz" Date: Fri, 3 Jan 2025 21:32:18 +0100 Subject: [PATCH] Add tsdav dependency with basic example --- .gitignore | 2 ++ deno.jsonc | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cac6b5e..a217a22 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ deno.lock *.plug.js +test_space +.env diff --git a/deno.jsonc b/deno.jsonc index 93b37cc..29f889e 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,7 +1,8 @@ { "tasks": { "build": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml", - "watch": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml -w" + "watch": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml -w", + "example": "deno run --allow-read --allow-env --env-file --allow-net example.ts" }, "lint": { "rules": { @@ -16,6 +17,7 @@ ] }, "imports": { - "@silverbulletmd/silverbullet": "jsr:@silverbulletmd/silverbullet@^0.9.0" + "@silverbulletmd/silverbullet": "jsr:@silverbulletmd/silverbullet@^0.9.0", + "tsdav": "npm:tsdav@2.1.3" } }