-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed major code smells * Fixes fetch using file:/// urls * Fixed Deno version typo * Replaced deprecated test deps
- Loading branch information
Showing
15 changed files
with
243 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"tasks": { | ||
"fmt": "deno fmt mod.ts src/ --check", | ||
"fmt": "deno fmt mod.ts src/ --options-single-quote --options-line-width=120 --check", | ||
"fmt:fix": "deno fmt mod.ts test/ src/ example/ --options-single-quote --options-line-width=120", | ||
"test": "deno test --unstable --allow-read --allow-net --coverage=coverage", | ||
"lcov": "deno coverage coverage --lcov --output=coverage/report.lcov", | ||
"cover": "deno task clean && deno task test && deno task lcov && genhtml -o coverage/html coverage/report.lcov", | ||
"clean": "rm -rf ./npm ./coverage" | ||
"clean": "rm -rf ./npm ./coverage", | ||
"cache-reload": "deno cache --reload --lock=deno.lock --lock-write mod.ts test/deps.ts" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
export { Skimming } from "./src/skimming.ts"; | ||
export type { | ||
CacheOptions, | ||
Context, | ||
FetchOptions, | ||
Output, | ||
} from "./src/lib/types.ts"; | ||
export { Skimming } from './src/skimming.ts'; | ||
export type { CacheOptions, Context, FetchOptions, Output } from './src/lib/types.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.