Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/ssg/assets.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as fs from "https://deno.land/std@0.83.0/fs/mod.ts";
import * as fs from "https://deno.land/std@0.123.0/fs/mod.ts";
import * as path from "https://deno.land/std@0.99.0/path/mod.ts";
import { Mapped } from "./utils.ts";

Expand Down
2 changes: 1 addition & 1 deletion core/ssg/components.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Vue from "https://deno.land/x/vue_js@0.0.5/mod.js";
import * as fs from "https://deno.land/std@0.83.0/fs/mod.ts";
import * as fs from "https://deno.land/std@0.123.0/fs/mod.ts";
import * as vueCompiler from "https://denopkg.com/crewdevio/vue-deno-compiler/mod.ts";
import * as path from "https://deno.land/std@0.99.0/path/mod.ts";
import { getExport, getTags, Mapped, VueExport } from "./utils.ts";
Expand Down
2 changes: 1 addition & 1 deletion core/ssg/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from "https://deno.land/std@0.99.0/path/mod.ts";
import * as fs from "https://deno.land/std@0.83.0/fs/mod.ts";
import * as fs from "https://deno.land/std@0.123.0/fs/mod.ts";
import { Language, minify } from "https://deno.land/x/minifier@v1.1.1/mod.ts";

export type Mapped<T> = { [key: string]: T };
Expand Down
10 changes: 5 additions & 5 deletions core/utils/deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// deno std library
export * as fs from "https://deno.land/std@0.83.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.83.0/path/mod.ts";
export * as colors from "https://deno.land/std@0.83.0/fmt/colors.ts";
export * as http from "https://deno.land/std@0.83.0/http/mod.ts";
export { v4 } from "https://deno.land/std@0.88.0/uuid/mod.ts"; //uuid generator
export * as fs from "https://deno.land/std@0.123.0/fs/mod.ts";
export * as path from "https://deno.land/std@0.123.0/path/mod.ts";
export * as colors from "https://deno.land/std@0.123.0/fmt/colors.ts";
export * as http from "https://deno.land/std@0.123.0/http/mod.ts";
export { v4 } from "https://deno.land/std@0.123.0/uuid/mod.ts"; //uuid generator
export {
assertEquals,
assertNotEquals,
Expand Down