Skip to content

Commit 4a359c6

Browse files
committed
chore: vendor updated htmlrewriter
1 parent 767b812 commit 4a359c6

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

edge-runtime/lib/response.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import type { Context } from '@netlify/edge-functions'
2-
import { HTMLRewriter, init, type TextChunk } from 'https://deno.land/x/[email protected]/src/index.ts'
2+
import {
3+
HTMLRewriter,
4+
init,
5+
type TextChunk,
6+
} from '../vendor/deno.land/x/[email protected]/src/index.ts'
37

48
import { updateModifiedHeaders } from './headers.ts'
59
import type { StructuredLogger } from './logging.ts'
@@ -13,7 +17,7 @@ import {
1317
relativizeURL,
1418
} from './util.ts'
1519

16-
await init();
20+
await init()
1721

1822
export interface FetchEventResult {
1923
response: Response

edge-runtime/vendor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ import 'https://deno.land/[email protected]/node/util.ts'
1212
import 'https://deno.land/[email protected]/path/mod.ts'
1313

1414
import 'https://deno.land/x/[email protected]/index.ts'
15-
import 'https://deno.land/x/[email protected]/index.ts'
15+
import 'https://deno.land/x/[email protected]/src/index.ts'
1616

1717
import 'https://v1-7-0--edge-utils.netlify.app/logger/mod.ts'

0 commit comments

Comments
 (0)