Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit ca451cf

Browse files
committed
Upgrade std to 0.135.0
1 parent 7c7657d commit ca451cf

File tree

18 files changed

+38
-38
lines changed

18 files changed

+38
-38
lines changed

cli.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { parse } from "https://deno.land/std@0.134.0/flags/mod.ts";
2-
import { readLines } from "https://deno.land/std@0.134.0/io/mod.ts";
3-
import { writeAll } from "https://deno.land/std@0.134.0/streams/conversion.ts";
4-
import { basename, resolve } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { parse } from "https://deno.land/std@0.135.0/flags/mod.ts";
2+
import { readLines } from "https://deno.land/std@0.135.0/io/mod.ts";
3+
import { writeAll } from "https://deno.land/std@0.135.0/streams/conversion.ts";
4+
import { basename, resolve } from "https://deno.land/std@0.135.0/path/mod.ts";
55
import { readImportMap } from "./server/config.ts";
66
import { findFile } from "./lib/fs.ts";
77
import log, { bold, dim, stripColor } from "./lib/log.ts";

commands/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { basename } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { basename } from "https://deno.land/std@0.135.0/path/mod.ts";
22
import { findFile } from "../lib/fs.ts";
33
import { builtinModuleExts } from "../lib/helpers.ts";
44
import log, { blue, bold } from "../lib/log.ts";

commands/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { basename, relative } from "https://deno.land/std@0.134.0/path/mod.ts";
2-
import { serve as stdServe, serveTls } from "https://deno.land/std@0.134.0/http/server.ts";
1+
import { basename, relative } from "https://deno.land/std@0.135.0/path/mod.ts";
2+
import { serve as stdServe, serveTls } from "https://deno.land/std@0.135.0/http/server.ts";
33
import mitt, { Emitter } from "https://esm.sh/[email protected]";
44
import { findFile, watchFs } from "../lib/fs.ts";
55
import { builtinModuleExts } from "../lib/helpers.ts";

commands/init.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Untar } from "https://deno.land/std@0.134.0/archive/tar.ts";
2-
import { Buffer } from "https://deno.land/std@0.134.0/io/buffer.ts";
3-
import { copy, readAll } from "https://deno.land/std@0.134.0/streams/conversion.ts";
4-
import { blue, cyan, dim, green, red } from "https://deno.land/std@0.134.0/fmt/colors.ts";
5-
import { ensureDir } from "https://deno.land/std@0.134.0/fs/ensure_dir.ts";
6-
import { basename, join } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { Untar } from "https://deno.land/std@0.135.0/archive/tar.ts";
2+
import { Buffer } from "https://deno.land/std@0.135.0/io/buffer.ts";
3+
import { copy, readAll } from "https://deno.land/std@0.135.0/streams/conversion.ts";
4+
import { blue, cyan, dim, green, red } from "https://deno.land/std@0.135.0/fmt/colors.ts";
5+
import { ensureDir } from "https://deno.land/std@0.135.0/fs/ensure_dir.ts";
6+
import { basename, join } from "https://deno.land/std@0.135.0/path/mod.ts";
77
import { gunzip } from "https://deno.land/x/[email protected]/mod.ts";
88
import { existsDir } from "../lib/fs.ts";
99
import log from "../lib/log.ts";

commands/start.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { basename, join } from "https://deno.land/std@0.134.0/path/mod.ts";
2-
import { serve as stdServe, serveTls } from "https://deno.land/std@0.134.0/http/server.ts";
1+
import { basename, join } from "https://deno.land/std@0.135.0/path/mod.ts";
2+
import { serve as stdServe, serveTls } from "https://deno.land/std@0.135.0/http/server.ts";
33
import { findFile } from "../lib/fs.ts";
44
import { builtinModuleExts } from "../lib/helpers.ts";
55
import log, { blue } from "../lib/log.ts";

compiler/build.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { dim } from "https://deno.land/std@0.134.0/fmt/colors.ts";
2-
import { encode } from "https://deno.land/std@0.134.0/encoding/base64.ts";
3-
import { ensureDir } from "https://deno.land/std@0.134.0/fs/ensure_dir.ts";
4-
import { dirname } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { dim } from "https://deno.land/std@0.135.0/fmt/colors.ts";
2+
import { encode } from "https://deno.land/std@0.135.0/encoding/base64.ts";
3+
import { ensureDir } from "https://deno.land/std@0.135.0/fs/ensure_dir.ts";
4+
import { dirname } from "https://deno.land/std@0.135.0/path/mod.ts";
55
import { compress } from "https://deno.land/x/[email protected]/mod.ts";
66

77
async function run(cmd: string[]) {
@@ -37,7 +37,7 @@ if (import.meta.main) {
3737
);
3838
await Deno.writeTextFile(
3939
"./dist/compiler.js",
40-
"import { red } from 'https://deno.land/std@0.134.0/fmt/colors.ts';" +
40+
"import { red } from 'https://deno.land/std@0.135.0/fmt/colors.ts';" +
4141
jsCode
4242
.replace(`import * as __wbg_star0 from 'env';`, "")
4343
.replace(`imports['env'] = __wbg_star0;`, `imports['env'] = { now: () => Date.now() };`)

compiler/dist/compiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { red } from "https://deno.land/std@0.134.0/fmt/colors.ts";
1+
import { red } from "https://deno.land/std@0.135.0/fmt/colors.ts";
22
let wasm;
33

44
const heap = new Array(32).fill(undefined);

compiler/mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ensureDir } from "https://deno.land/std@0.134.0/fs/ensure_dir.ts";
2-
import { dirname, join } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { ensureDir } from "https://deno.land/std@0.135.0/fs/ensure_dir.ts";
2+
import { dirname, join } from "https://deno.land/std@0.135.0/path/mod.ts";
33
import { existsFile } from "../lib/fs.ts";
44
import { isCanary, VERSION } from "../version.ts";
55
import init, {

import_map.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"aleph/": "./",
44
"aleph/server": "./server/mod.ts",
55
"aleph/react": "./framework/react/mod.ts",
6-
"std/": "https://deno.land/std@0.134.0/",
6+
"std/": "https://deno.land/std@0.135.0/",
77
"react": "https://esm.sh/[email protected]",
88
"react-dom": "https://esm.sh/[email protected]",
99
"react-dom/server": "https://esm.sh/[email protected]/server",

lib/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { join } from "https://deno.land/std@0.134.0/path/mod.ts";
1+
import { join } from "https://deno.land/std@0.135.0/path/mod.ts";
22
import { existsDir, existsFile } from "./fs.ts";
33
import log from "./log.ts";
44
import util from "./util.ts";

0 commit comments

Comments
 (0)