From 5055e2bf1146cf740f35edd4540a22661a843c2e Mon Sep 17 00:00:00 2001 From: hugoalh Date: Thu, 14 Nov 2024 17:40:57 +0800 Subject: [PATCH] Update dependencies --- _payload.ts | 6 +++--- deno.jsonc | 8 ++++---- mod.ts | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/_payload.ts b/_payload.ts index 979432b5..cc4c1515 100644 --- a/_payload.ts +++ b/_payload.ts @@ -5,8 +5,8 @@ import { type JSONArray, type JSONObject, type JSONValue, -} from "ISJSON"; -import { getRunnerWorkspacePath } from "GHACTIONS/runner"; +} from "ISJSON/mod.ts"; +import { getRunnerWorkspacePath } from "GHACTIONS/runner.ts"; import getRegExpURL from "REGEXPURL"; import { contentType } from "STD/media-types/content-type"; import { basename as pathBasename } from "STD/path/basename"; @@ -14,7 +14,7 @@ import { extname as pathExtname } from "STD/path/extname"; import { isAbsolute as pathIsAbsolute } from "STD/path/is-absolute"; import { globToRegExp } from "STD/path/glob-to-regexp"; import { join as pathJoin } from "STD/path/join"; -import type { StringTruncator } from "STRINGOVERFLOW"; +import type { StringTruncator } from "STRINGOVERFLOW/mod.ts"; import { colorNamespaceList } from "./_color_namespace_list.ts"; import { walkFS, diff --git a/deno.jsonc b/deno.jsonc index 6371f190..aa5cd3e1 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -11,16 +11,16 @@ "imports": { "COLOR": "https://esm.sh/color@4.2.3", "COLORNAMESPACELISTCOMMUNITY": "https://esm.sh/color-name-list@10.28.0/dist/colornames.esm.js", - "EXFETCH": "jsr:@hugoalh/exfetch@0.5.1", - "GHACTIONS": "jsr:@hugoalh/github-actions-core@0.4.1", - "ISJSON": "jsr:@hugoalh/is-json@1.0.4", + "EXFETCH/": "https://raw.githubusercontent.com/hugoalh/exfetch-es/v0.5.1/", + "GHACTIONS/": "https://raw.githubusercontent.com/hugoalh/github-actions-core-es/v0.4.2/", + "ISJSON/": "https://raw.githubusercontent.com/hugoalh/is-json-es/v1.0.4/", "REGEXPURL": "https://esm.sh/url-regex-safe@4.0.0", "STD/assert": "jsr:@std/assert@1.0.7", "STD/fs": "jsr:@std/fs@1.0.5", "STD/media-types": "jsr:@std/media-types@1.0.3", "STD/path": "jsr:@std/path@1.0.8", "STD/yaml": "jsr:@std/yaml@1.0.5", - "STRINGOVERFLOW": "jsr:@hugoalh/string-overflow@2.0.4" + "STRINGOVERFLOW/": "https://raw.githubusercontent.com/hugoalh/string-overflow-es/v2.0.4/" }, "lint": { "rules": { diff --git a/mod.ts b/mod.ts index d9be06e7..cd9efd3b 100644 --- a/mod.ts +++ b/mod.ts @@ -1,24 +1,24 @@ import { ExFetch, userAgentDefault -} from "EXFETCH"; +} from "EXFETCH/mod.ts"; import { addSecretMask, writeDebug, writeError -} from "GHACTIONS/log"; +} from "GHACTIONS/log.ts"; import { getInput, getInputBoolean, getInputNumber, setOutput -} from "GHACTIONS/parameter"; +} from "GHACTIONS/parameter.ts"; import type { JSONArray, JSONObject, -} from "ISJSON"; +} from "ISJSON/mod.ts"; import { parse as yamlParse } from "STD/yaml/parse"; -import { StringTruncator } from "STRINGOVERFLOW"; +import { StringTruncator } from "STRINGOVERFLOW/mod.ts"; import { resolveContent, resolveEmbeds,