-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update dependency recommendations (#2320)
closes #2319 The issue is because `imports.ts` wasn't changed before releasing. I thought I would go through and bump some other versions as well. This handles everything except the esbuild stuff and `tests/`.
- Loading branch information
Showing
69 changed files
with
198 additions
and
186 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 |
---|---|---|
|
@@ -6,13 +6,13 @@ | |
"$fresh/": "../", | ||
"twind": "https://esm.sh/[email protected]", | ||
"twind/": "https://esm.sh/[email protected]/", | ||
"preact": "https://esm.sh/preact@10.18.1", | ||
"preact/": "https://esm.sh/preact@10.18.1/", | ||
"@preact/signals": "https://esm.sh/*@preact/[email protected].1", | ||
"@preact/signals-core": "https://esm.sh/@preact/[email protected].0", | ||
"preact": "https://esm.sh/preact@10.19.5", | ||
"preact/": "https://esm.sh/preact@10.19.5/", | ||
"@preact/signals": "https://esm.sh/*@preact/[email protected].2", | ||
"@preact/signals-core": "https://esm.sh/@preact/[email protected].1", | ||
"@preact/[email protected]": "https://esm.sh/@preact/[email protected]", | ||
"@preact/[email protected]": "https://esm.sh/@preact/[email protected]", | ||
"$std/": "https://deno.land/std@0.211.0/", | ||
"$std/": "https://deno.land/std@0.216.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
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 |
---|---|---|
|
@@ -83,8 +83,8 @@ export default { | |
+ "nodeModulesDir": true, | ||
"imports": { | ||
"$fresh/": "https://deno.land/x/[email protected]/", | ||
"preact": "https://esm.sh/[email protected].2", | ||
"preact/": "https://esm.sh/[email protected].2/", | ||
"preact": "https://esm.sh/[email protected].5", | ||
"preact/": "https://esm.sh/[email protected].5/", | ||
- "twind": "https://esm.sh/[email protected]", | ||
- "twind/": "https://esm.sh/[email protected]/", | ||
+ "tailwindcss": "npm:[email protected]", | ||
|
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 |
---|---|---|
|
@@ -22,8 +22,8 @@ instead this one particular commit? Just make the following changes to your | |
"imports": { | ||
- "$fresh/": "https://deno.land/x/[email protected]/", | ||
+ "$fresh/": "https://raw.githubusercontent.com/denoland/fresh/the-particular-commit-hash-here/", | ||
"preact": "https://esm.sh/preact@10.15.1", | ||
"preact/": "https://esm.sh/preact@10.15.1/", | ||
"preact": "https://esm.sh/preact@10.19.5", | ||
"preact/": "https://esm.sh/preact@10.19.5/", | ||
``` | ||
|
||
### Forked Fresh | ||
|
@@ -39,8 +39,8 @@ been merged yet (at the time of writing this): | |
"imports": { | ||
- "$fresh/": "https://deno.land/x/[email protected]/", | ||
+ "$fresh/": "https://raw.githubusercontent.com/deer/fresh/state_in_props/", | ||
"preact": "https://esm.sh/preact@10.15.1", | ||
"preact/": "https://esm.sh/preact@10.15.1/", | ||
"preact": "https://esm.sh/preact@10.19.5", | ||
"preact/": "https://esm.sh/preact@10.19.5/", | ||
``` | ||
|
||
## Creating a new project | ||
|
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 @@ | ||
import { Plugin, PluginMiddleware, ResolvedFreshConfig } from "../server.ts"; | ||
import type postcss from "npm:[email protected].33"; | ||
import * as path from "https://deno.land/std@0.207.0/path/mod.ts"; | ||
import { walk } from "https://deno.land/std@0.207.0/fs/walk.ts"; | ||
import type postcss from "npm:[email protected].35"; | ||
import * as path from "https://deno.land/std@0.216.0/path/mod.ts"; | ||
import { walk } from "https://deno.land/std@0.216.0/fs/walk.ts"; | ||
import { TailwindPluginOptions } from "./tailwind/types.ts"; | ||
|
||
async function initTailwind( | ||
|
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 @@ | ||
import { ResolvedFreshConfig } from "../../server.ts"; | ||
import tailwindCss, { Config } from "tailwindcss"; | ||
import postcss from "npm:[email protected].33"; | ||
import postcss from "npm:[email protected].35"; | ||
import cssnano from "npm:[email protected]"; | ||
import autoprefixer from "npm:[email protected]"; | ||
import * as path from "https://deno.land/std@0.207.0/path/mod.ts"; | ||
import * as path from "https://deno.land/std@0.216.0/path/mod.ts"; | ||
import { TailwindPluginOptions } from "./types.ts"; | ||
|
||
const CONFIG_EXTENSIONS = ["ts", "js", "mjs"]; | ||
|
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.211.0/path/mod.ts"; | ||
export { escape as regexpEscape } from "https://deno.land/std@0.211.0/regexp/escape.ts"; | ||
} from "https://deno.land/std@0.216.0/path/mod.ts"; | ||
export { escape as regexpEscape } from "https://deno.land/std@0.216.0/regexp/escape.ts"; | ||
export { denoPlugins } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.216.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,30 +6,30 @@ export { | |
fromFileUrl, | ||
isAbsolute, | ||
join, | ||
SEP, | ||
SEPARATOR, | ||
toFileUrl, | ||
} 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"; | ||
} from "https://deno.land/std@0.216.0/path/mod.ts"; | ||
export { walk } from "https://deno.land/std@0.216.0/fs/walk.ts"; | ||
export * as colors from "https://deno.land/std@0.216.0/fmt/colors.ts"; | ||
export { | ||
type Handler as ServeHandler, | ||
serve, | ||
} 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"; | ||
} from "https://deno.land/std@0.216.0/http/server.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.216.0/http/status.ts"; | ||
export { | ||
contentType, | ||
} 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"; | ||
} from "https://deno.land/std@0.216.0/media_types/content_type.ts"; | ||
export { encodeHex } from "https://deno.land/std@0.216.0/encoding/hex.ts"; | ||
export { escape } from "https://deno.land/std@0.216.0/regexp/escape.ts"; | ||
export * as JSONC from "https://deno.land/std@0.216.0/jsonc/mod.ts"; | ||
export { renderToString } from "https://esm.sh/*[email protected]"; | ||
export { | ||
assertEquals, | ||
assertThrows, | ||
} from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
} from "https://deno.land/std@0.216.0/assert/mod.ts"; | ||
export { | ||
isIdentifierChar, | ||
isIdentifierStart, | ||
} from "https://esm.sh/@babel/[email protected]"; | ||
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"; | ||
export { normalize } from "https://deno.land/std@0.216.0/path/posix/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.216.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
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 |
---|---|---|
|
@@ -15,13 +15,13 @@ export { | |
assertRejects, | ||
assertStringIncludes, | ||
assertThrows, | ||
} from "https://deno.land/std@0.211.0/assert/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.211.0/testing/snapshot.ts"; | ||
} from "https://deno.land/std@0.216.0/assert/mod.ts"; | ||
export { assertSnapshot } from "https://deno.land/std@0.216.0/testing/snapshot.ts"; | ||
export { | ||
TextLineStream, | ||
} 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"; | ||
} from "https://deno.land/std@0.216.0/streams/text_line_stream.ts"; | ||
export { delay } from "https://deno.land/std@0.216.0/async/delay.ts"; | ||
export { retry } from "https://deno.land/std@0.216.0/async/retry.ts"; | ||
export { | ||
default as puppeteer, | ||
Page, | ||
|
@@ -31,21 +31,21 @@ export { | |
DOMParser, | ||
HTMLElement, | ||
HTMLMetaElement, | ||
} from "https://esm.sh/linkedom@0.15.1"; | ||
} from "https://esm.sh/linkedom@0.16.8"; | ||
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.211.0/fs/mod.ts"; | ||
export { copy } from "https://deno.land/std@0.216.0/fs/mod.ts"; | ||
export { | ||
basename, | ||
dirname, | ||
extname, | ||
fromFileUrl, | ||
join, | ||
relative, | ||
SEP, | ||
SEPARATOR, | ||
toFileUrl, | ||
} 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"; | ||
} from "https://deno.land/std@0.216.0/path/mod.ts"; | ||
export * as JSONC from "https://deno.land/std@0.216.0/jsonc/mod.ts"; | ||
export * as colors from "https://deno.land/std@0.216.0/fmt/colors.ts"; | ||
export { STATUS_CODE } from "https://deno.land/std@0.216.0/http/status.ts"; | ||
export { stripAnsiCode } from "https://deno.land/std@0.216.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 |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"lock": false, | ||
"imports": { | ||
"$fresh/": "../../", | ||
"preact": "https://esm.sh/preact@10.15.1", | ||
"preact/": "https://esm.sh/preact@10.15.1/", | ||
"preact": "https://esm.sh/preact@10.19.5", | ||
"preact/": "https://esm.sh/preact@10.19.5/", | ||
"@preact/signals": "https://esm.sh/*@preact/[email protected]", | ||
"@preact/signals-core": "https://esm.sh/@preact/[email protected]" | ||
}, | ||
|
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.