Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Nov 14, 2024
1 parent 29ef993 commit 5055e2b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions _payload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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";
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,
Expand Down
8 changes: 4 additions & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"imports": {
"COLOR": "https://esm.sh/[email protected]",
"COLORNAMESPACELISTCOMMUNITY": "https://esm.sh/[email protected]/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/[email protected]",
"STD/assert": "jsr:@std/[email protected]",
"STD/fs": "jsr:@std/[email protected]",
"STD/media-types": "jsr:@std/[email protected]",
"STD/path": "jsr:@std/[email protected]",
"STD/yaml": "jsr:@std/[email protected]",
"STRINGOVERFLOW": "jsr:@hugoalh/string-overflow@2.0.4"
"STRINGOVERFLOW/": "https://raw.githubusercontent.com/hugoalh/string-overflow-es/v2.0.4/"
},
"lint": {
"rules": {
Expand Down
10 changes: 5 additions & 5 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 5055e2b

Please sign in to comment.