Skip to content
This repository was archived by the owner on Sep 21, 2025. It is now read-only.

Commit b891796

Browse files
Update dependencies
React 19 is still not ready for this unbuild step, unfortunately.
1 parent 8db68f2 commit b891796

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.dvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.2
1+
2.1.9

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"react-dom": "https://esm.sh/[email protected]",
3737
"react-dom/": "https://esm.sh/[email protected]/",
3838

39-
"std/assert/equals": "jsr:@std/[email protected].8/equals",
40-
"std/http/file-server": "jsr:@std/[email protected].11/file-server",
39+
"std/assert/equals": "jsr:@std/[email protected].11/equals",
40+
"std/http/file-server": "jsr:@std/[email protected].13/file-server",
4141
"deno/emit": "jsr:@deno/[email protected]"
4242
}
4343
}

lib/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function basicLayoutResponse(htmlContent: string, options: BasicLayoutOpt
6868
headers: {
6969
'content-type': 'text/html; charset=utf-8',
7070
'content-security-policy':
71-
`default-src 'self'; child-src 'none'; img-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://unpkg.com/@babel/standalone@7.24.7/babel.min.js https://unpkg.com/[email protected]/umd/react.production.min.js https://unpkg.com/[email protected]/umd/react-dom.production.min.js;`,
71+
`default-src 'self'; child-src 'none'; img-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://unpkg.com/@babel/standalone@7.26.9/babel.min.js https://unpkg.com/[email protected]/umd/react.production.min.js https://unpkg.com/[email protected]/umd/react-dom.production.min.js;`,
7272
'x-frame-options': 'DENY',
7373
},
7474
status,

pages/react.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function pageContent(_request: Request, match: URLPatternResult) {
3131
<section id="${counterId}">${counterHtml}</section>
3232
</section>
3333
34-
<script src="https://unpkg.com/@babel/standalone@7.24.7/babel.min.js"></script>
34+
<script src="https://unpkg.com/@babel/standalone@7.26.9/babel.min.js"></script>
3535
<script src="https://unpkg.com/[email protected]/umd/react.production.min.js" crossorigin="anonymous"></script>
3636
<script src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js" crossorigin="anonymous"></script>
3737
<script type="text/babel">

0 commit comments

Comments
 (0)