Skip to content

Commit

Permalink
update dep imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanBulmer committed Jul 20, 2024
1 parent 183715e commit 0feefa4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 4 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"singleQuote": false
},
"publish": {
"include": ["LICENSE", "README.md", "src/**/*.ts"],
"exclude": [".github", "*.test.ts", ".gitignore"]
"exclude": [".github/*", "tests/*.test.ts", ".gitignore", "coverage/*"]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0"
}
}
9 changes: 7 additions & 2 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/add.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "jsr:@std/assert";
import { assertEquals } from "@std/assert";
import { add } from "../mod.ts";

Deno.test("Adding numbers", function addTest() {
Expand Down

0 comments on commit 0feefa4

Please sign in to comment.