-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: merged upstream master with test/app
- Loading branch information
Showing
10 changed files
with
111 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,10 @@ on: | |
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: denoland/[email protected] | ||
|
@@ -21,6 +24,7 @@ jobs: | |
- name: Create coverage report | ||
run: deno task cov | ||
- name: Coveralls | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export { parse as parseRange } from 'https://deno.land/x/[email protected]/parse.ts' | ||
export type { RangesSpecifier } from 'https://deno.land/x/[email protected]/types.ts' | ||
export { typeByExtension } from 'https://deno.land/std@0.185.0/media_types/type_by_extension.ts' | ||
export { getCharset } from 'https://deno.land/std@0.185.0/media_types/get_charset.ts' | ||
export { contentType } from 'https://deno.land/std@0.185.0/media_types/content_type.ts' | ||
export * as path from 'https://deno.land/std@0.185.0/path/mod.ts' | ||
export { typeByExtension } from 'https://deno.land/std@0.192.0/media_types/type_by_extension.ts' | ||
export { getCharset } from 'https://deno.land/std@0.192.0/media_types/get_charset.ts' | ||
export { contentType } from 'https://deno.land/std@0.192.0/media_types/content_type.ts' | ||
export * as path from 'https://deno.land/std@0.192.0/path/mod.ts' | ||
export { default as Negotiator } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { vary } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { encodeUrl } from 'https://deno.land/x/[email protected]/mod.ts' | ||
|
@@ -15,20 +15,20 @@ export { | |
export { status } from 'https://deno.land/x/[email protected]/status.ts' | ||
export { isIP } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { escapeHtml } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export * as base64 from 'https://deno.land/std@0.185.0/encoding/base64.ts' | ||
export { parseMediaType } from 'https://deno.land/std@0.185.0/media_types/parse_media_type.ts' | ||
export * as base64 from 'https://deno.land/std@0.192.0/encoding/base64.ts' | ||
export { parseMediaType } from 'https://deno.land/std@0.192.0/media_types/parse_media_type.ts' | ||
export * as mediaTyper from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { contentDisposition } from 'https://esm.sh/@tinyhttp/content-disposition@2.0.9' | ||
export { basename, extname } from 'https://deno.land/std@0.185.0/path/mod.ts' | ||
export { contentDisposition } from 'https://cdn.skypack.dev/@tinyhttp/content-disposition@2.1.0' | ||
export { basename, extname } from 'https://deno.land/std@0.192.0/path/mod.ts' | ||
export { | ||
accepts, | ||
acceptsEncodings, | ||
acceptsLanguages, | ||
} from 'https://deno.land/std@0.185.0/http/negotiation.ts' | ||
export { setCookie } from 'https://deno.land/std@0.185.0/http/cookie.ts' | ||
export type { Cookie } from 'https://deno.land/std@0.185.0/http/cookie.ts' | ||
} from 'https://deno.land/std@0.192.0/http/negotiation.ts' | ||
export { setCookie } from 'https://deno.land/std@0.192.0/http/cookie.ts' | ||
export type { Cookie } from 'https://deno.land/std@0.192.0/http/cookie.ts' | ||
export { | ||
Status, | ||
STATUS_TEXT, | ||
} from 'https://deno.land/std@0.185.0/http/http_status.ts' | ||
export { CookieMap } from 'https://deno.land/std@0.185.0/http/cookie_map.ts' | ||
} from 'https://deno.land/std@0.192.0/http/http_status.ts' | ||
export { CookieMap } from 'https://deno.land/std@0.192.0/http/cookie_map.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
Hello from <%= it.name %> | ||
|
||
Async func: <%= await it.func() %> | ||
Hello from <%= it.name %> |
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.