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

Update dependencies #84

Merged
merged 3 commits into from
Nov 6, 2020
Merged
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
4 changes: 2 additions & 2 deletions tests/integration/error_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A module manager for Deno.

USAGE

deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts
dmm [SUBCOMMAND]

SUBCOMMANDS
Expand All @@ -50,7 +50,7 @@ SUBCOMMANDS
EXAMPLE USAGE

Install dmm
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts

Check a single module
dmm check fs
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/help_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A module manager for Deno.

USAGE

deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts
dmm [SUBCOMMAND]

SUBCOMMANDS
Expand All @@ -52,7 +52,7 @@ SUBCOMMANDS
EXAMPLE USAGE

Install dmm
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts
deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts

Check a single module
dmm check fs
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/info_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ ${colours.blue("INFO")} Information on drash

- Name: drash
- Description: A REST microframework for Deno's HTTP server with zero dependencies.
- deno.land Link: https://deno.land/x/drash@v1.2.5
- deno.land Link: https://deno.land/x/drash@${latestDrashRelease}
- GitHub Repository: https://github.com/drashland/deno-drash
- Import Statement: import * as drash from "https://deno.land/x/drash@v1.2.5";
- Latest Version: v1.2.5
- Import Statement: import * as drash from "https://deno.land/x/drash@${latestDrashRelease}";
- Latest Version: ${latestDrashRelease}

`,
);
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/up-to-date-deps/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; // up to date
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

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/up-to-date-deps/original_deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; // up to date
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

Expand Down