Skip to content

Commit 9b3e2c9

Browse files
authored
Merge pull request #79 from drashland/update-dependencies
Update dependencies
2 parents 4f72b92 + ba9a6ec commit 9b3e2c9

File tree

11 files changed

+31
-26
lines changed

11 files changed

+31
-26
lines changed

.github/workflows/bumper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
update-dep:
88
strategy:
99
matrix:
10-
deno: ["1.5.0"]
10+
deno: ["1.5.1"]
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/master.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
deno: ["1.5.0"]
13+
deno: ["1.5.1"]
1414
runs-on: ${{ matrix.os }}
1515

1616
steps:
@@ -32,7 +32,7 @@ jobs:
3232
linting:
3333
strategy:
3434
matrix:
35-
deno: ["1.5.0"]
35+
deno: ["1.5.1"]
3636
# Doesn't need to be checked in all OS
3737
runs-on: ubuntu-latest
3838

.github/workflows/pre_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
deno: ["1.4.2"]
16+
deno: ["1.5.1"]
1717

1818
runs-on: ubuntu-latest
1919

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
`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.
2323

24-
# Contents
24+
# Table of Contents
2525

2626
* [Documentation](#documentation)
2727
* [Features](#features)
@@ -72,10 +72,12 @@ There are two ways you can use this module:
7272
help
7373
```
7474

75-
# How it Works
75+
# How It Works
7676

7777
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.
7878

79+
_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._
80+
7981
## Mirrors
8082

8183
* https://nest.land/package/dmm

console/bumper_ci_service.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
2-
import { denoVersionFiles, moduleVersionFiles } "./bumper_ci_service_files.ts";
2+
import {
3+
denoVersionFiles,
4+
moduleVersionFiles,
5+
} from "./bumper_ci_service_files.ts";
36

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

deps.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import * as colours from "https://deno.land/[email protected]/fmt/colors.ts";
2-
export { colours };
3-
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
1+
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
42
export { CliService } from "https://raw.githubusercontent.com/drashland/services/master/cli/cli_service.ts";
53
export { LoggerService } from "https://raw.githubusercontent.com/drashland/services/master/logger/logger_service.ts";
6-
export { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
4+
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
5+
import * as colours from "https://deno.land/[email protected]/fmt/colors.ts";
6+
export { colours };

tests/integration/info_test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ Deno.test({
139139
140140
- Name: fs
141141
- Description: Cannot retrieve descriptions for std modules
142-
- deno.land Link: https://deno.land/std@0.75.0/fs
142+
- deno.land Link: https://deno.land/std@0.76.0/fs
143143
- GitHub Repository: https://github.com/denoland/deno/tree/master/std/fs
144-
- Import Statement: import * as fs from "https://deno.land/std@0.75.0/fs";
145-
- Latest Version: 0.75.0
144+
- Import Statement: import * as fs from "https://deno.land/std@0.76.0/fs";
145+
- Latest Version: 0.76.0
146146
147147
${colours.blue("INFO")} Information on drash
148148

tests/integration/out-of-date-deps/deps.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import * as colors from "https://deno.land/[email protected]/fmt/colors.ts"; //out of d
66

77
import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //out of date
88

9-
import * as log from "https://x.nest.land/[email protected]/log/mod.ts"; //out of date
9+
import * as log from "https://deno.land/[email protected]/log/mod.ts"; //out of date
1010

11-
export { v4 } from "https://x.nest.land/[email protected]/uuid/mod.ts"; //out of date
11+
export { v4 } from "https://deno.land/[email protected]/uuid/mod.ts"; //out of date
1212

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

tests/integration/out-of-date-deps/original_deps.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import * as colors from "https://deno.land/[email protected]/fmt/colors.ts"; //out of d
66

77
import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //out of date
88

9-
import * as log from "https://x.nest.land/[email protected]/log/mod.ts"; //out of date
9+
import * as log from "https://deno.land/[email protected]/log/mod.ts"; //out of date
1010

11-
export { v4 } from "https://x.nest.land/[email protected]/uuid/mod.ts"; //out of date
11+
export { v4 } from "https://deno.land/[email protected]/uuid/mod.ts"; //out of date
1212

1313
export { Cliffy, colors, Drash, fs, log };
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { Drash } from "https://deno.land/x/[email protected]/mod.ts"; // up to date
22

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

5-
import * as colors from "https://deno.land/std@0.75.0/fmt/colors.ts"; //up to date
5+
import * as colors from "https://deno.land/std@0.76.0/fmt/colors.ts"; //up to date
66

77
import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //up to date
88

9-
import * as log from "https://x.nest.land/std@0.75.0/log/mod.ts"; //up to date
9+
import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date
1010

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

1313
export { Cliffy, colors, Drash, fs, log };
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { Drash } from "https://deno.land/x/[email protected]/mod.ts"; // up to date
22

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

5-
import * as colors from "https://deno.land/std@0.75.0/fmt/colors.ts"; //up to date
5+
import * as colors from "https://deno.land/std@0.76.0/fmt/colors.ts"; //up to date
66

77
import * as Cliffy from "https://x.nest.land/[email protected]/mod.ts"; //up to date
88

9-
import * as log from "https://x.nest.land/std@0.75.0/log/mod.ts"; //up to date
9+
import * as log from "https://deno.land/std@0.76.0/log/mod.ts"; //up to date
1010

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

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

0 commit comments

Comments
 (0)