Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Oct 12, 2019
1 parent f236691 commit c4c77dc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
- checkout
- run:
name: Install Deno
command: curl -fsSL https://deno.land/x/install/install.sh | sh -s -- v0.19.0
command: curl -fsSL https://deno.land/x/install/install.sh | sh -s -- v0.20.0
- run:
name: Run Tests
command: |
export PATH=$HOME/.deno/bin:$PATH
deno -A test
deno -A test
4 changes: 2 additions & 2 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"https://deno.land/std": {
"version": "@v0.18.0",
"version": "@v0.20.0",
"modules": [
"/testing/mod.ts",
"/testing/asserts.ts",
"/io/bufio.ts",
"/fmt/colors.ts"
]
}
}
}
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@v0.18.0",
"version": "@v0.20.0",
"modules": [
"/testing/mod.ts",
"/testing/asserts.ts",
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.18.0/fmt/colors.ts";
export * from "https://deno.land/std@v0.20.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/bufio.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.18.0/io/bufio.ts";
export * from "https://deno.land/std@v0.20.0/io/bufio.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.18.0/testing/asserts.ts";
export * from "https://deno.land/std@v0.20.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.18.0/testing/mod.ts";
export * from "https://deno.land/std@v0.20.0/testing/mod.ts";

0 comments on commit c4c77dc

Please sign in to comment.