Skip to content

Commit

Permalink
fix: import type error in deno v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
buttercubz committed Sep 15, 2020
1 parent 9195a01 commit 88e6d95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function main() {
}
} else if (command === "help") {
const info = [
colors.green("merlin test runner v1.0.2 🧪\n"),
colors.green("merlin test runner v1.0.3 🧪\n"),
colors.green("usage:"),
`merlin ${colors.yellow("test")} ...allow-flags\n`,
colors.green("example:"),
Expand Down
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "merlin",
"description": "Testing and Benchmarking framework for deno 🧙‍♂️",
"version": "1.0.2",
"version": "1.0.3",
"entry": "./mod.ts",
"stable": true,
"unlisted": false,
Expand Down
2 changes: 1 addition & 1 deletion src/maven.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from "../imports/pretty_benching.ts";
import { colors } from "../imports/fmt.ts";
import { bench } from "../imports/testing.ts";
import { Thresholds, Bench } from "./types.ts";
import type { Thresholds, Bench } from "./types.ts";

export class Maven {
private bench = bench.bench;
Expand Down
2 changes: 1 addition & 1 deletion src/merlin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { asserts } from "../imports/testing.ts";

import {
import type {
ArrayContains,
Config,
Fetch_equal,
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { bench } from "../imports/testing.ts";
import type { bench } from "../imports/testing.ts";

export interface testConfig {
ignore?: boolean;
Expand Down

0 comments on commit 88e6d95

Please sign in to comment.