-
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.
feat: 🎸 Add cache handling for If-None-Match/Etag (#4)
* feat: 🎸 Add cache handling for If-None-Match/Etag
- Loading branch information
Showing
7 changed files
with
123 additions
and
98 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
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ export { | |
test, | ||
} from "https://deno.land/[email protected]/front_matter/yaml.ts"; | ||
export * as log from "https://deno.land/[email protected]/log/mod.ts"; | ||
export { calculate } from "https://deno.land/[email protected]/http/etag.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"tasks": { | ||
"dev": "deno run --allow-env --allow-net --allow-read --watch server.ts", | ||
"format": "deno fmt ../luhmann.ts ../luhmann_test.ts", | ||
"format": "deno fmt ../mod.ts ../luhmann_test.ts", | ||
"file_server": "deno run --allow-read --allow-net https://deno.land/[email protected]/http/file_server.ts static", | ||
"update_snapshots": "deno test --allow-all ../luhmann_test.ts -- --update", | ||
"update_snapshots_e2e": "deno test --allow-all ../luhmann_test_e2e.ts -- --update", | ||
|
Oops, something went wrong.