-
-
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.
- Loading branch information
Showing
11 changed files
with
17 additions
and
16 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { delay } from "jsr:@std/async@^0.224.1"; | ||
import { markdownTable } from "https://esm.sh/[email protected]"; | ||
import { markdownTable } from "npm:[email protected]"; | ||
const time = 10; | ||
|
||
async function oha(url?: string) { | ||
|
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,3 @@ | ||
import * as esbuild from "npm:esbuild@0.23.1"; | ||
export { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.10.3"; | ||
import * as esbuild from "npm:esbuild@0.24.0"; | ||
export { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.11.0"; | ||
export { esbuild }; |
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,14 +6,14 @@ export * from "jsr:@std/path@^1.0.1"; | |
export { encodeHex } from "jsr:@std/encoding@^1.0.5/hex"; | ||
export { assert, assertEquals, assertExists } from "jsr:@std/assert@^1.0.6"; | ||
|
||
export { h } from "https://esm.sh/[email protected]"; | ||
export { h } from "npm:preact@^10.25.0"; | ||
export type { | ||
ComponentChild, | ||
ComponentChildren, | ||
JSX, | ||
VNode, | ||
} from "https://esm.sh/[email protected]"; | ||
} from "npm:preact@^10.25.0"; | ||
export { | ||
renderToString, | ||
renderToStringAsync, | ||
} from "https://esm.sh/[email protected][email protected]"; | ||
} from "npm:preact-render-to-string@^6.5.11"; |
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,16 +12,17 @@ | |
}, | ||
"imports": { | ||
"@app/": "./", | ||
"preact": "https://esm.sh/[email protected]", | ||
"preact/": "https://esm.sh/[email protected]/" | ||
"preact": "npm:preact@^10.25.0", | ||
"@preact/signals": "npm:@preact/signals@^1.2.3", | ||
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11" | ||
}, | ||
"compilerOptions": { | ||
"jsx": "react-jsx", | ||
"jsxImportSource": "preact" | ||
}, | ||
"nodeModulesDir": "auto", | ||
"tasks": { | ||
"start": "ENV=DEVELOPMENT deno run --env --unstable-kv -A --watch modules/app/main.ts --debug", | ||
"start": "ENV=DEVELOPMENT deno run -r --env --unstable-kv -A --watch modules/app/main.ts --debug", | ||
"build": "deno run --env -A --unstable-kv modules/app/main.ts --build ", | ||
"prod": "deno run --env --unstable-kv -A modules/app/main.ts", | ||
"test": "rm -rf .hydrate && rm -rf cov && deno test --env --unstable-kv -A --coverage=cov && deno coverage cov", | ||
|
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,5 +1,5 @@ | ||
// deno-lint-ignore-file no-explicit-any | ||
import tailwindCss, { Config } from "npm:[email protected].4"; | ||
import tailwindCss, { Config } from "npm:[email protected].15"; | ||
import postcss from "npm:[email protected]"; | ||
import cssnano from "npm:[email protected]"; | ||
import autoprefixer from "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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { type Config } from "npm:[email protected].14"; | ||
import { type Config } from "npm:[email protected].15"; | ||
|
||
/** | ||
* see: https://tailwindcss.com/docs/content-configuration | ||
|