forked from denoland/fresh
-
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.
chore: bump std to 0.211.0 and loader to 0.8.3 (denoland#2241)
- Loading branch information
Showing
11 changed files
with
44 additions
and
45 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"@preact/signals-core": "https://esm.sh/@preact/[email protected]", | ||
"@preact/[email protected]": "https://esm.sh/@preact/[email protected]", | ||
"@preact/[email protected]": "https://esm.sh/@preact/[email protected]", | ||
"$std/": "https://deno.land/std@0.208.0/", | ||
"$std/": "https://deno.land/std@0.211.0/", | ||
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts", | ||
"$marked-mangle": "https://esm.sh/[email protected]", | ||
"$fresh-testing-library": "https://deno.land/x/[email protected]/mod.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 |
---|---|---|
|
@@ -4,7 +4,7 @@ export { | |
join, | ||
relative, | ||
toFileUrl, | ||
} from "https://deno.land/std@0.208.0/path/mod.ts"; | ||
export { escape as regexpEscape } from "https://deno.land/std@0.208.0/regexp/escape.ts"; | ||
export { denoPlugins } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.208.0/assert/mod.ts"; | ||
} from "https://deno.land/std@0.211.0/path/mod.ts"; | ||
export { escape as regexpEscape } from "https://deno.land/std@0.211.0/regexp/escape.ts"; | ||
export { denoPlugins } from "https://deno.land/x/[email protected].3/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.211.0/assert/mod.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 |
---|---|---|
|
@@ -9,24 +9,24 @@ export { | |
resolve, | ||
SEP, | ||
toFileUrl, | ||
} from "https://deno.land/std@0.208.0/path/mod.ts"; | ||
export { normalize } from "https://deno.land/std@0.208.0/path/posix/mod.ts"; | ||
export { DAY, WEEK } from "https://deno.land/std@0.208.0/datetime/constants.ts"; | ||
export * as colors from "https://deno.land/std@0.208.0/fmt/colors.ts"; | ||
} from "https://deno.land/std@0.211.0/path/mod.ts"; | ||
export { normalize } from "https://deno.land/std@0.211.0/path/posix/mod.ts"; | ||
export { DAY, WEEK } from "https://deno.land/std@0.211.0/datetime/constants.ts"; | ||
export * as colors from "https://deno.land/std@0.211.0/fmt/colors.ts"; | ||
export { | ||
walk, | ||
type WalkEntry, | ||
WalkError, | ||
} from "https://deno.land/std@0.208.0/fs/walk.ts"; | ||
export { parse } from "https://deno.land/std@0.208.0/flags/mod.ts"; | ||
} from "https://deno.land/std@0.211.0/fs/walk.ts"; | ||
export { parse } from "https://deno.land/std@0.211.0/flags/mod.ts"; | ||
export { | ||
gte, | ||
lt, | ||
parse as semverParse, | ||
} from "https://deno.land/std@0.208.0/semver/mod.ts"; | ||
export { emptyDir, existsSync } from "https://deno.land/std@0.208.0/fs/mod.ts"; | ||
export * as JSONC from "https://deno.land/std@0.208.0/jsonc/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.208.0/assert/mod.ts"; | ||
} from "https://deno.land/std@0.211.0/semver/mod.ts"; | ||
export { emptyDir, existsSync } from "https://deno.land/std@0.211.0/fs/mod.ts"; | ||
export * as JSONC from "https://deno.land/std@0.211.0/jsonc/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
|
||
// ts-morph | ||
export { Node, Project } from "https://deno.land/x/[email protected]/mod.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,28 +8,28 @@ export { | |
join, | ||
SEP, | ||
toFileUrl, | ||
} from "https://deno.land/std@0.208.0/path/mod.ts"; | ||
export { walk } from "https://deno.land/std@0.208.0/fs/walk.ts"; | ||
export * as colors from "https://deno.land/std@0.208.0/fmt/colors.ts"; | ||
} from "https://deno.land/std@0.211.0/path/mod.ts"; | ||
export { walk } from "https://deno.land/std@0.211.0/fs/walk.ts"; | ||
export * as colors from "https://deno.land/std@0.211.0/fmt/colors.ts"; | ||
export { | ||
type Handler as ServeHandler, | ||
serve, | ||
} from "https://deno.land/std@0.208.0/http/server.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.208.0/http/status.ts"; | ||
} from "https://deno.land/std@0.211.0/http/server.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.211.0/http/status.ts"; | ||
export { | ||
contentType, | ||
} from "https://deno.land/std@0.208.0/media_types/content_type.ts"; | ||
export { toHashString } from "https://deno.land/std@0.208.0/crypto/to_hash_string.ts"; | ||
export { escape } from "https://deno.land/std@0.208.0/regexp/escape.ts"; | ||
export * as JSONC from "https://deno.land/std@0.208.0/jsonc/mod.ts"; | ||
} from "https://deno.land/std@0.211.0/media_types/content_type.ts"; | ||
export { encodeHex } from "https://deno.land/std@0.211.0/encoding/hex.ts"; | ||
export { escape } from "https://deno.land/std@0.211.0/regexp/escape.ts"; | ||
export * as JSONC from "https://deno.land/std@0.211.0/jsonc/mod.ts"; | ||
export { renderToString } from "https://esm.sh/*[email protected]"; | ||
export { | ||
assertEquals, | ||
assertThrows, | ||
} from "https://deno.land/std@0.208.0/assert/mod.ts"; | ||
} from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
export { | ||
isIdentifierChar, | ||
isIdentifierStart, | ||
} from "https://esm.sh/@babel/[email protected]"; | ||
export { normalize } from "https://deno.land/std@0.208.0/path/posix/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.208.0/testing/snapshot.ts"; | ||
export { normalize } from "https://deno.land/std@0.211.0/path/posix/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.211.0/testing/snapshot.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 |
---|---|---|
|
@@ -14,13 +14,13 @@ export { | |
assertNotMatch, | ||
assertRejects, | ||
assertStringIncludes, | ||
} from "https://deno.land/std@0.208.0/assert/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.208.0/testing/snapshot.ts"; | ||
} from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.211.0/testing/snapshot.ts"; | ||
export { | ||
TextLineStream, | ||
} from "https://deno.land/std@0.208.0/streams/text_line_stream.ts"; | ||
export { delay } from "https://deno.land/std@0.208.0/async/delay.ts"; | ||
export { retry } from "https://deno.land/std@0.208.0/async/retry.ts"; | ||
} from "https://deno.land/std@0.211.0/streams/text_line_stream.ts"; | ||
export { delay } from "https://deno.land/std@0.211.0/async/delay.ts"; | ||
export { retry } from "https://deno.land/std@0.211.0/async/retry.ts"; | ||
export { | ||
default as puppeteer, | ||
Page, | ||
|
@@ -33,7 +33,7 @@ export { | |
} from "https://esm.sh/[email protected]"; | ||
export { defineConfig, type Preset } from "https://esm.sh/@twind/[email protected]"; | ||
export { default as presetTailwind } from "https://esm.sh/@twind/[email protected]"; | ||
export { copy } from "https://deno.land/std@0.208.0/fs/mod.ts"; | ||
export { copy } from "https://deno.land/std@0.211.0/fs/mod.ts"; | ||
export { | ||
basename, | ||
dirname, | ||
|
@@ -43,8 +43,8 @@ export { | |
relative, | ||
SEP, | ||
toFileUrl, | ||
} from "https://deno.land/std@0.208.0/path/mod.ts"; | ||
export * as JSONC from "https://deno.land/std@0.208.0/jsonc/mod.ts"; | ||
export * as colors from "https://deno.land/std@0.208.0/fmt/colors.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.208.0/http/status.ts"; | ||
export { stripAnsiCode } from "https://deno.land/std@0.208.0/fmt/colors.ts"; | ||
} from "https://deno.land/std@0.211.0/path/mod.ts"; | ||
export * as JSONC from "https://deno.land/std@0.211.0/jsonc/mod.ts"; | ||
export * as colors from "https://deno.land/std@0.211.0/fmt/colors.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.211.0/http/status.ts"; | ||
export { stripAnsiCode } from "https://deno.land/std@0.211.0/fmt/colors.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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"preact/": "https://esm.sh/[email protected]/", | ||
"@preact/signals": "https://esm.sh/*@preact/[email protected]", | ||
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]", | ||
"$std/": "https://deno.land/std@0.208.0/" | ||
"$std/": "https://deno.land/std@0.211.0/" | ||
}, | ||
"compilerOptions": { | ||
"jsx": "react-jsx", | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"preact/": "https://esm.sh/[email protected]/", | ||
"@preact/signals": "https://esm.sh/*@preact/[email protected]", | ||
"@preact/signals-core": "https://esm.sh/@preact/[email protected]", | ||
"$std/": "https://deno.land/std@0.208.0/", | ||
"$std/": "https://deno.land/std@0.211.0/", | ||
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts", | ||
"$marked-mangle": "https://esm.sh/[email protected]", | ||
"$fresh-testing-library": "https://deno.land/x/[email protected]/mod.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,6 +1,6 @@ | ||
import puppeteer from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { Image } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { join } from "https://deno.land/std@0.208.0/path/mod.ts"; | ||
import { join } from "https://deno.land/std@0.211.0/path/mod.ts"; | ||
|
||
const url = Deno.args[0]; | ||
const id = Deno.args[1]; | ||
|