From 08dc82ecda2988bbc38df682381cdbdc8822119d Mon Sep 17 00:00:00 2001 From: Cheng Chen <35309699+cchensh@users.noreply.github.com> Date: Thu, 22 Feb 2024 18:34:42 +0000 Subject: [PATCH] Update dependencies (#30) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Sarah Jiang --- functions/find_gif.ts | 2 +- import_map.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/find_gif.ts b/functions/find_gif.ts index b650020..300ad13 100644 --- a/functions/find_gif.ts +++ b/functions/find_gif.ts @@ -1,5 +1,5 @@ import { DefineFunction, Schema, SlackFunction } from "deno-slack-sdk/mod.ts"; -import gifs from "../assets/gifs.json" assert { type: "json" }; +import gifs from "../assets/gifs.json" with { type: "json" }; /** * Functions are reusable building blocks of automation that accept inputs, diff --git a/import_map.json b/import_map.json index ca161f0..199a83c 100644 --- a/import_map.json +++ b/import_map.json @@ -1,6 +1,6 @@ { "imports": { - "deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.5.0/", - "deno-slack-api/": "https://deno.land/x/deno_slack_api@2.1.2/" + "deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.6.0/", + "deno-slack-api/": "https://deno.land/x/deno_slack_api@2.2.0/" } }