Skip to content

Commit

Permalink
Merge pull request #30 from syfxlin/renovate/https-deno.land-std-0.x
Browse files Browse the repository at this point in the history
chore(deps): update dependency https://deno.land/std to v0.204.0
  • Loading branch information
syfxlin authored Oct 24, 2023
2 parents 24d1941 + 9e477fe commit 21ef9db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/depker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "https://deno.land/std@0.203.0/dotenv/load.ts";
import "https://deno.land/std@0.204.0/dotenv/load.ts";
import { fs, path } from "./deps.ts";
import { Dax, dax } from "./services/dax.service.ts";
import { CliService } from "./services/cli.service.ts";
Expand Down
12 changes: 6 additions & 6 deletions src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import * as fs from "https://deno.land/std@0.203.0/fs/mod.ts";
import * as path from "https://deno.land/std@0.203.0/path/mod.ts";
import * as yaml from "https://deno.land/std@0.203.0/yaml/mod.ts";
import * as fs from "https://deno.land/std@0.204.0/fs/mod.ts";
import * as path from "https://deno.land/std@0.204.0/path/mod.ts";
import * as yaml from "https://deno.land/std@0.204.0/yaml/mod.ts";
import ignore from "https://esm.sh/v128/[email protected]/deno/ignore.mjs";
import nunjucks from "https://deno.land/x/[email protected]/mod.js";

export { fs, path, yaml, ignore, nunjucks };
export { osType } from "https://deno.land/std@0.203.0/path/_os.ts";
export { osType } from "https://deno.land/std@0.204.0/path/_os.ts";
export { colors } from "https://deno.land/x/[email protected]/ansi/mod.ts";
export { datetime } from "https://deno.land/x/[email protected]/mod.ts";
export { loadSync } from "https://deno.land/std@0.203.0/dotenv/mod.ts";
export { loadSync } from "https://deno.land/std@0.204.0/dotenv/mod.ts";
export { Command } from "https://deno.land/x/[email protected]/command/mod.ts";
export { Table } from "https://deno.land/x/[email protected]/table/mod.ts";
export { EventEmitter } from "https://deno.land/x/[email protected]/mod.ts";
export { build$, CommandBuilder, RequestBuilder } from "https://deno.land/x/[email protected]/mod.ts";
export { getFileInfoType, isSubdir, toPathString } from "https://deno.land/std@0.203.0/fs/_util.ts";
export { getFileInfoType, isSubdir, toPathString } from "https://deno.land/std@0.204.0/fs/_util.ts";
export type { $BuiltInProperties } from "https://deno.land/x/[email protected]/mod.ts";

declare module "https://deno.land/x/[email protected]/mod.ts" {
Expand Down

0 comments on commit 21ef9db

Please sign in to comment.