Skip to content

Commit

Permalink
deno: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 28, 2024
1 parent 44bb6b6 commit c9d2530
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 28 deletions.
8 changes: 4 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
},
"imports": {
"preact-render-to-string": "https://esm.sh/*[email protected]?pin=102",
"preact/": "https://esm.sh/preact@10.16.0/",
"preact": "https://esm.sh/preact@10.16.0?pin=102",
"partytown/": "https://deno.land/x/partytown@0.3.0/",
"std/": "https://deno.land/std@0.203.0/",
"preact/": "https://esm.sh/preact@10.22.0/",
"preact": "https://esm.sh/preact@10.22.0?pin=102",
"partytown/": "https://deno.land/x/partytown@0.4.8/",
"std/": "https://deno.land/std@0.224.0/",
"$fresh/": "https://denopkg.com/denoland/[email protected]/",
"deco/": "./"
},
Expand Down
4 changes: 2 additions & 2 deletions engine/schema/schemeable.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { dirname, join } from "std/path/mod.ts";
import {
findSchemeableFromNode,
type Schemeable as _Schemeable,
} from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/transform.ts";
import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/utils.ts";
} from "https://denopkg.com/deco-cx/deco@1.68.1/engine/schema/transform.ts";
import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.68.1/engine/schema/utils.ts";
import { fromFileUrl, toFileUrl } from "std/path/mod.ts";
import { ImportMapBuilder } from "../importmap/builder.ts";
import { parsePath } from "./parser.ts";
Expand Down
2 changes: 1 addition & 1 deletion hypervisor/hypervisor.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type ServerSentEventMessage,
ServerSentEventStream,
} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts";
} from "https://deno.land/std@0.224.0/http/server_sent_event_stream.ts";
import fjp from "npm:[email protected]";
import { debounce } from "std/async/debounce.ts";
import * as colors from "std/fmt/colors.ts";
Expand Down
2 changes: 1 addition & 1 deletion live.gen.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.50.3/live.gen.ts";
export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.68.1/live.gen.ts";
2 changes: 1 addition & 1 deletion runtime/caches/fileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
withCacheNamespace,
} from "./common.ts";
import { existsSync } from "std/fs/mod.ts";
import { LRUCache } from "https://esm.sh/[email protected].0";
import { LRUCache } from "https://esm.sh/[email protected].2";
import { numToUint8Array, uint8ArrayToNum } from "../utils.ts";

const FILE_SYSTEM_CACHE_DIRECTORY =
Expand Down
2 changes: 1 addition & 1 deletion runtime/caches/redis.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Redis } from "https://deno.land/x/upstash_redis@v1.22.1/mod.ts";
import { Redis } from "https://deno.land/x/upstash_redis@v1.31.3/mod.ts";

import { logger, tracer } from "../../observability/otel/config.ts";
import {
Expand Down
2 changes: 1 addition & 1 deletion runtime/caches/s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
NoSuchKey,
PutObjectCommand,
S3Client,
} from "https://esm.sh/@aws-sdk/client-s3@3.513.0";
} from "https://esm.sh/@aws-sdk/client-s3@3.583.0";
import { Context } from "../../deco.ts";
import { ValueType } from "../../deps.ts";
import { logger, tracer } from "../../observability/otel/config.ts";
Expand Down
2 changes: 1 addition & 1 deletion scripts/apps/init.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { join } from "https://deno.land/std@0.190.0/path/mod.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import {
lookup,
REGISTRIES,
Expand Down
4 changes: 2 additions & 2 deletions scripts/apps/watcher.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { join } from "https://deno.land/std@0.201.0/path/mod.ts";
import { mergeReadableStreams } from "https://deno.land/std@0.201.0/streams/merge_readable_streams.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import { mergeReadableStreams } from "https://deno.land/std@0.224.0/streams/merge_readable_streams.ts";

const runModule = (module: string, ...args: string[]): Deno.Command => {
return new Deno.Command(Deno.execPath(), {
Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Octokit } from "https://cdn.skypack.dev/@octokit/[email protected]";
import { blue, bold } from "https://deno.land/std@0.181.0/fmt/colors.ts";
import { blue, bold } from "https://deno.land/std@0.224.0/fmt/colors.ts";
import * as semver from "https://deno.land/x/[email protected]/mod.ts";
import type { Endpoints } from "https://esm.sh/v135/@octokit/[email protected]";

Expand Down
8 changes: 4 additions & 4 deletions scripts/init.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts";
import * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts";
import {
ensureDir,
ensureFile,
exists,
} from "https://deno.land/std@0.204.0/fs/mod.ts";
import { join } from "https://deno.land/std@0.204.0/path/mod.ts";
} from "https://deno.land/std@0.224.0/fs/mod.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import {
Input,
prompt,
Expand All @@ -14,7 +14,7 @@ import {
import {
BlobReader,
ZipReader,
} from "https://deno.land/x/[email protected].30/index.js";
} from "https://deno.land/x/[email protected].44/index.js";
import { getDecofileJSONFromDecofile } from "../engine/decofile/json.ts";
import { init as initApp } from "./apps/init.ts";

Expand Down
2 changes: 1 addition & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Select } from "https://deno.land/x/[email protected].5/prompt/mod.ts";
import { Select } from "https://deno.land/x/[email protected].7/prompt/mod.ts";
import { join } from "std/path/mod.ts";
import { format, increment, parse } from "std/semver/mod.ts";
import { stringifyForWrite } from "../utils/json.ts";
Expand Down
6 changes: 3 additions & 3 deletions scripts/update.lib.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { parse } from "https://deno.land/std@0.204.0/flags/mod.ts";
import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts";
import { join } from "https://deno.land/std@0.204.0/path/mod.ts";
import { parse } from "https://deno.land/std@0.224.0/flags/mod.ts";
import * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import * as semver from "https://deno.land/x/[email protected]/mod.ts";
import {
lookup,
Expand Down
8 changes: 4 additions & 4 deletions scripts/upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ import {
brightRed,
brightYellow,
gray,
} from "https://deno.land/std@0.204.0/fmt/colors.ts";
} from "https://deno.land/std@0.224.0/fmt/colors.ts";
import {
ensureFile,
exists,
walk,
} from "https://deno.land/std@0.204.0/fs/mod.ts";
import { join } from "https://deno.land/std@0.204.0/path/mod.ts";
} from "https://deno.land/std@0.224.0/fs/mod.ts";
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
import * as semver from "https://deno.land/x/[email protected]/mod.ts";
import {
lookup,
REGISTRIES,
} from "https://denopkg.com/hayd/[email protected]/registry.ts";
import * as diff from "https://esm.sh/diff@5.1.0";
import * as diff from "https://esm.sh/diff@5.2.0";
import { format } from "../utils/formatter.ts";
import { exec } from "./utils.ts";
// deno-lint-ignore verbatim-module-syntax
Expand Down
2 changes: 1 addition & 1 deletion utils/invoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export { isStreamProps } from "../clients/withManifest.ts";
import {
type ServerSentEventMessage,
ServerSentEventStream,
} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts";
} from "https://deno.land/std@0.224.0/http/server_sent_event_stream.ts";

export const isEventStreamResponse = (
invokeResponse: unknown | AsyncIterableIterator<unknown>,
Expand Down

0 comments on commit c9d2530

Please sign in to comment.