Skip to content

Commit

Permalink
Merge pull request #103 from drashland/update-dependencies-bump-versi…
Browse files Browse the repository at this point in the history
…on-numbers

chore: Update dependencies and bump version numbers across repo
  • Loading branch information
ebebbington authored Feb 6, 2021
2 parents 40cf181 + d35e3d3 commit cdfad48
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/v0.0.1/ci/bumper_service.ts";
export { CliService } from "https://raw.githubusercontent.com/drashland/services/v0.0.1/cli/cli_service.ts";
export { ConsoleLogger } from "https://raw.githubusercontent.com/drashland/services/v0.1.0/loggers/console_logger.ts";
export { assertEquals } from "https://deno.land/std@0.84.0/testing/asserts.ts";
import * as colours from "https://deno.land/std@0.84.0/fmt/colors.ts";
export { assertEquals } from "https://deno.land/std@0.86.0/testing/asserts.ts";
import * as colours from "https://deno.land/std@0.86.0/fmt/colors.ts";
export { colours };
4 changes: 2 additions & 2 deletions src/commands/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function info(modules: string[]): Promise<void> {
for (const index in modules) {
const moduleToGetInfoOn: string = modules[index];
const stdResponse = await fetch(
"https://github.com/denoland/deno/tree/master/std/" + moduleToGetInfoOn,
"https://github.com/denoland/deno_std/tree/master/" + moduleToGetInfoOn,
);
const thirdPartyResponse = await fetch(
DenoService.DENO_CDN_URL + moduleToGetInfoOn + "/meta/versions.json",
Expand All @@ -32,7 +32,7 @@ export async function info(modules: string[]): Promise<void> {
description = "Cannot retrieve descriptions for std modules";
denoLandUrl = "https://deno.land/std@" + latestVersion + "/" +
name;
repositoryUrl = "https://github.com/denoland/deno/tree/master/std/" +
repositoryUrl = "https://github.com/denoland/deno_std/tree/master/" +
name;
}
if (isThirdParty) {
Expand Down
8 changes: 4 additions & 4 deletions tests/integration/info_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Deno.test({
stdout,
colours.blue("INFO") + " Information on drash\n\n" +
" - Name: drash\n" +
" - Description: A REST microframework for Deno's HTTP server with zero dependencies.\n" +
" - Description: A REST microframework for Deno's HTTP server with zero 3rd party dependencies.\n" +
` - deno.land Link: https://deno.land/x/drash@${latestDrashRelease}\n` +
" - Repository: https://github.com/drashland/deno-drash\n" +
` - Import Statement: import * as drash from \"https://deno.land/x/drash@${latestDrashRelease}\";\n` +
Expand Down Expand Up @@ -96,7 +96,7 @@ Deno.test({
" - Name: fs\n" +
" - Description: Cannot retrieve descriptions for std modules\n" +
` - deno.land Link: https://deno.land/std@${latestStdRelease}/fs\n` +
" - Repository: https://github.com/denoland/deno/tree/master/std/fs\n" +
" - Repository: https://github.com/denoland/deno_std/tree/master/fs\n" +
` - Import Statement: import * as fs from \"https://deno.land/std@${latestStdRelease}/fs\";\n` +
` - Latest Version: ${latestStdRelease}\n` +
"\n",
Expand Down Expand Up @@ -140,14 +140,14 @@ Deno.test({
- Name: fs
- Description: Cannot retrieve descriptions for std modules
- deno.land Link: https://deno.land/std@${latestStdRelease}/fs
- Repository: https://github.com/denoland/deno/tree/master/std/fs
- Repository: https://github.com/denoland/deno_std/tree/master/fs
- Import Statement: import * as fs from "https://deno.land/std@${latestStdRelease}/fs";
- Latest Version: ${latestStdRelease}
${colours.blue("INFO")} Information on drash
- Name: drash
- Description: A REST microframework for Deno's HTTP server with zero dependencies.
- Description: A REST microframework for Deno's HTTP server with zero 3rd party dependencies.
- deno.land Link: https://deno.land/x/drash@${latestDrashRelease}
- Repository: https://github.com/drashland/deno-drash
- Import Statement: import * as drash from "https://deno.land/x/drash@${latestDrashRelease}";
Expand Down
10 changes: 5 additions & 5 deletions tests/integration/up-to-date-deps/deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Drash } from "https://deno.land/x/drash@v1.4.0/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v1.4.1/mod.ts"; // up to date

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

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

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

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

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

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

Expand Down
10 changes: 5 additions & 5 deletions tests/integration/up-to-date-deps/original_deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Drash } from "https://deno.land/x/drash@v1.4.0/mod.ts"; // up to date
import { Drash } from "https://deno.land/x/drash@v1.4.1/mod.ts"; // up to date

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

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

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

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

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

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

Expand Down

0 comments on commit cdfad48

Please sign in to comment.