diff --git a/deps.ts b/deps.ts index eb7bd1c..916bfbf 100644 --- a/deps.ts +++ b/deps.ts @@ -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 }; diff --git a/src/commands/info.ts b/src/commands/info.ts index 269b2f2..63a7e9c 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -11,7 +11,7 @@ export async function info(modules: string[]): Promise { 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", @@ -32,7 +32,7 @@ export async function info(modules: string[]): Promise { 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) { diff --git a/tests/integration/info_test.ts b/tests/integration/info_test.ts index 8a531d4..a82c840 100644 --- a/tests/integration/info_test.ts +++ b/tests/integration/info_test.ts @@ -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` + @@ -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", @@ -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}"; diff --git a/tests/integration/up-to-date-deps/deps.ts b/tests/integration/up-to-date-deps/deps.ts index 9688501..96a705b 100644 --- a/tests/integration/up-to-date-deps/deps.ts +++ b/tests/integration/up-to-date-deps/deps.ts @@ -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 }; diff --git a/tests/integration/up-to-date-deps/original_deps.ts b/tests/integration/up-to-date-deps/original_deps.ts index 9688501..96a705b 100644 --- a/tests/integration/up-to-date-deps/original_deps.ts +++ b/tests/integration/up-to-date-deps/original_deps.ts @@ -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 };