Skip to content

Commit

Permalink
feat: migrate to deno std testing
Browse files Browse the repository at this point in the history
  • Loading branch information
checkerschaf committed Sep 13, 2022
1 parent c3693e1 commit 77e8e74
Show file tree
Hide file tree
Showing 12 changed files with 430 additions and 614 deletions.
3 changes: 2 additions & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"coverage-pretty": "deno task coverage && deno coverage coverage/profile",
"coverage-html": "deno task coverage && deno coverage coverage/profile --lcov > coverage/coverage.lcov && genhtml -o coverage/html coverage/coverage.lcov",
"test-sites": "deno test --allow-net --import-map=import_map.json all-sites",
"compile": "deno compile --output=sherlock -q --allow-net --import-map=import_map.json cli.ts"
"compile": "deno compile --output=sherlock -q --allow-net --import-map=import_map.json cli.ts",
"bundle": "deno bundle --import-map=import_map.json cli.ts"
},
"lint": {
"files": {
Expand Down
2 changes: 1 addition & 1 deletion import_map.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"imports": {
"std/": "https://deno.land/std@0.136.0/"
"std/": "https://deno.land/std@0.155.0/"
}
}
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const SHERLOCK_VERSION = "2.2.0";
export const SHERLOCK_VERSION = "2.3.0";

export { SherlockScanner } from "./src/sherlock-scanner.ts";
Loading

0 comments on commit 77e8e74

Please sign in to comment.