Skip to content

Commit

Permalink
Merge pull request #79 from drashland/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
crookse committed Nov 4, 2020
2 parents 4f72b92 + ba9a6ec commit 9b3e2c9
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bumper.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
update-dep:
strategy:
matrix:
deno: ["1.5.0"]
deno: ["1.5.1"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
deno: ["1.5.0"]
deno: ["1.5.1"]
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -32,7 +32,7 @@ jobs:
linting:
strategy:
matrix:
deno: ["1.5.0"]
deno: ["1.5.1"]
# Doesn't need to be checked in all OS
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_release.yml
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
deno: ["1.4.2"]
deno: ["1.5.1"]

runs-on: ubuntu-latest

Expand Down
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -21,7 +21,7 @@

`dmm` (pronounced "dim") is a Deno module manager. It can update your `deps.ts` file, check if any of your dependencies are out of date, and give you information about any module in the Deno world. Managing your dependencies hasn't been easier.

# Contents
# Table of Contents

* [Documentation](#documentation)
* [Features](#features)
Expand Down Expand Up @@ -72,10 +72,12 @@ There are two ways you can use this module:
help
```

# How it Works
# How It Works

dmm reads the `deps.ts` file at the current working directory -- checking versioned `import` and `export` statements and checking to see if they can be updated. If any dependency can be updated, it lets you know which ones can be updated; and if you want to update them, dmm will rewrite your `deps.ts` file so that your dependencies reflect their latest versions.

_Note: nest.land may not reflect the latest Deno Standard Modules version immediately after Deno releases a new version. Please keep this in mind when importing your modules via nest.land._

## Mirrors

* https://nest.land/package/dmm
Expand Down
5 changes: 4 additions & 1 deletion console/bumper_ci_service.ts
@@ -1,5 +1,8 @@
import { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
import { denoVersionFiles, moduleVersionFiles } "./bumper_ci_service_files.ts";
import {
denoVersionFiles,
moduleVersionFiles,
} from "./bumper_ci_service_files.ts";

const b = new BumperService("dmm", Deno.args);

Expand Down
8 changes: 4 additions & 4 deletions deps.ts
@@ -1,6 +1,6 @@
import * as colours from "https://deno.land/std@0.75.0/fmt/colors.ts";
export { colours };
export { assertEquals } from "https://deno.land/std@0.75.0/testing/asserts.ts";
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
export { CliService } from "https://raw.githubusercontent.com/drashland/services/master/cli/cli_service.ts";
export { LoggerService } from "https://raw.githubusercontent.com/drashland/services/master/logger/logger_service.ts";
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
export { assertEquals } from "https://deno.land/std@0.76.0/testing/asserts.ts";
import * as colours from "https://deno.land/std@0.76.0/fmt/colors.ts";
export { colours };
6 changes: 3 additions & 3 deletions tests/integration/info_test.ts
Expand Up @@ -139,10 +139,10 @@ Deno.test({
- Name: fs
- Description: Cannot retrieve descriptions for std modules
- deno.land Link: https://deno.land/std@0.75.0/fs
- deno.land Link: https://deno.land/std@0.76.0/fs
- GitHub Repository: https://github.com/denoland/deno/tree/master/std/fs
- Import Statement: import * as fs from "https://deno.land/std@0.75.0/fs";
- Latest Version: 0.75.0
- Import Statement: import * as fs from "https://deno.land/std@0.76.0/fs";
- Latest Version: 0.76.0
${colours.blue("INFO")} Information on drash
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/out-of-date-deps/deps.ts
Expand Up @@ -6,8 +6,8 @@ import * as colors from "https://deno.land/std@0.53.0/fmt/colors.ts"; //out of d

import * as Cliffy from "https://x.nest.land/cliffy@0.11.2/mod.ts"; //out of date

import * as log from "https://x.nest.land/std@0.53.0/log/mod.ts"; //out of date
import * as log from "https://deno.land/std@0.53.0/log/mod.ts"; //out of date

export { v4 } from "https://x.nest.land/std@0.61.0/uuid/mod.ts"; //out of date
export { v4 } from "https://deno.land/std@0.61.0/uuid/mod.ts"; //out of date

export { Cliffy, colors, Drash, fs, log };
4 changes: 2 additions & 2 deletions tests/integration/out-of-date-deps/original_deps.ts
Expand Up @@ -6,8 +6,8 @@ import * as colors from "https://deno.land/std@0.53.0/fmt/colors.ts"; //out of d

import * as Cliffy from "https://x.nest.land/cliffy@0.11.2/mod.ts"; //out of date

import * as log from "https://x.nest.land/std@0.53.0/log/mod.ts"; //out of date
import * as log from "https://deno.land/std@0.53.0/log/mod.ts"; //out of date

export { v4 } from "https://x.nest.land/std@0.61.0/uuid/mod.ts"; //out of date
export { v4 } from "https://deno.land/std@0.61.0/uuid/mod.ts"; //out of date

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

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

import * as colors from "https://deno.land/std@0.75.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.76.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://x.nest.land/std@0.75.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date

export { v4 } from "https://x.nest.land/std@0.75.0/uuid/mod.ts"; //up to date
export { v4 } from "https://deno.land/std@0.76.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
@@ -1,13 +1,13 @@
import { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; // up to date

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

import * as colors from "https://deno.land/std@0.75.0/fmt/colors.ts"; //up to date
import * as colors from "https://deno.land/std@0.76.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://x.nest.land/std@0.75.0/log/mod.ts"; //up to date
import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date

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

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

0 comments on commit 9b3e2c9

Please sign in to comment.