Skip to content

Commit 9b00b0d

Browse files
committed
forgot to pin versions
1 parent bdee0c6 commit 9b00b0d

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

deps.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export * as pretty_benching from "https://deno.land/x/pretty_benching@v0.3.3/mod.ts";
2-
export * from "https://denopkg.com/crewdevio/Trex@proxy/proxy/files/testing.ts";
3-
export * as colors from "https://deno.land/std@0.113.0/fmt/colors.ts";
2+
export * as colors from "https://deno.land/std@0.140.0/fmt/colors.ts";
3+
export * as asserts from "https://deno.land/std@0.87.0/testing/asserts.ts";
4+
export * as bench from "https://deno.land/std@0.87.0/testing/bench.ts";

run.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"scripts": {
3-
"test": "deno test -A --unstable --import-map=./import_map.json",
3+
"test": "deno test -A --unstable",
44
"log": "trex exec ghlog crewdevio/merlin"
55
}
66
}

src/maven.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
*/
77

88
import type { Thresholds, Bench } from "./types.ts";
9-
import { pretty_benching } from "../deps.ts";
10-
import { colors } from "../deps.ts";
11-
import { bench } from "../deps.ts";
9+
import { pretty_benching, colors, bench } from "../deps.ts";
1210

1311
const { prettyBenchmarkProgress, prettyBenchmarkResult } = pretty_benching;
1412

@@ -94,7 +92,7 @@ export class Maven {
9492
prettyBenchmarkProgress({
9593
indicators: Maven.runIndicator,
9694
thresholds: Maven.thresholds,
97-
}),
95+
})
9896
);
9997
}
10098

src/merlin.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
import { asserts } from "../deps.ts";
8+
import { asserts, colors } from "../deps.ts";
99
import type {
1010
ArrayContains,
1111
Asserts,
@@ -21,8 +21,6 @@ import type {
2121
throws,
2222
} from "./types.ts";
2323

24-
import { colors } from "../deps.ts";
25-
2624
/**
2725
* testing framework for deno inspire in jest 🧙‍♂️
2826
*/

0 commit comments

Comments
 (0)