Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Refactor #89

Merged
merged 4 commits into from
Nov 10, 2020
Merged
Changes from 1 commit
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
Next Next commit
update dependencies
  • Loading branch information
Edward Bebbington committed Nov 9, 2020

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 7a33dbb6cb2b511b972d8dd1aa839a4dbddfbb45
8 changes: 4 additions & 4 deletions tests/integration/up-to-date-deps/deps.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Drash } from "https://deno.land/x/drash@v1.3.0/mod.ts"; // up to date

import * as fs from "https://deno.land/std@0.76.0/fs/mod.ts"; // up to date
import * as fs from "https://deno.land/std@0.77.0/fs/mod.ts"; // up to date

import * as colors from "https://deno.land/std@0.76.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.77.0/fmt/colors.ts"; //up to date

import * as Cliffy from "https://x.nest.land/cliffy@0.15.0/mod.ts"; //up to date

import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.77.0/log/mod.ts"; //up to date

export { v4 } from "https://deno.land/std@0.76.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.77.0/uuid/mod.ts"; //up to date

export { Cliffy, colors, Drash, fs, log };
8 changes: 4 additions & 4 deletions tests/integration/up-to-date-deps/original_deps.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Drash } from "https://deno.land/x/drash@v1.3.0/mod.ts"; // up to date

import * as fs from "https://deno.land/std@0.76.0/fs/mod.ts"; // up to date
import * as fs from "https://deno.land/std@0.77.0/fs/mod.ts"; // up to date

import * as colors from "https://deno.land/std@0.76.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.77.0/fmt/colors.ts"; //up to date

import * as Cliffy from "https://x.nest.land/cliffy@0.15.0/mod.ts"; //up to date

import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.77.0/log/mod.ts"; //up to date

export { v4 } from "https://deno.land/std@0.76.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.77.0/uuid/mod.ts"; //up to date

export { Cliffy, colors, Drash, fs, log };