Skip to content

Commit

Permalink
use deps dans dev_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Apr 24, 2024
1 parent 8213d42 commit 1c7dc93
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// export * as pc from "https://deno.land/std@0.223.0/fmt/colors.ts";
// export * as pc from "jsr:@std/fmt/colors";
export * as pc from "@std/fmt/colors";
export * as pc from "jsr:@std/fmt/colors";
4 changes: 4 additions & 0 deletions dev_deps.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// export * as pc from "https://deno.land/std@0.223.0/fmt/colors.ts";
// export * as pc from "jsr:@std/fmt/colors";
export * as pc from "jsr:@std/fmt/colors";
export { assert, assertEquals } from "jsr:@std/assert";
2 changes: 1 addition & 1 deletion src/OpenCVBuilder_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// import { OpenCVBuildEnv, OpenCVBuilder } from '../dist/cjs/index'
import OpenCVBuildEnv from "./OpenCVBuildEnv.ts";
import { OpenCVBuilder } from "./OpenCVBuilder.ts";
import { assert } from "@std/assert";
import { assert } from "../dev_deps.ts";

// chai.use(require('chai-string'));

Expand Down
2 changes: 1 addition & 1 deletion src/misc_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "@std/assert";
import { assertEquals } from "../dev_deps.ts";
import { args2Option } from "./misc.ts";

Deno.test("utils", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/utils_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "@std/assert";
import { assert } from "../dev_deps.ts";
import * as utils from "./utils.ts";

Deno.test("protect", function testLib() {
Expand Down

0 comments on commit 1c7dc93

Please sign in to comment.