1
1
import { cp , mkdir , readFile , rm , writeFile } from 'node:fs/promises'
2
- import { dirname , join } from 'node:path'
2
+ import { dirname , join , relative , sep } from 'node:path'
3
+ import { sep as posixSep } from 'node:path/posix'
3
4
4
5
import type { Manifest , ManifestFunction } from '@netlify/edge-functions'
5
6
import { glob } from 'fast-glob'
@@ -8,6 +9,8 @@ import { pathToRegexp } from 'path-to-regexp'
8
9
9
10
import { EDGE_HANDLER_NAME , PluginContext } from '../plugin-context.js'
10
11
12
+ const toPosixPath = ( path : string ) => path . split ( sep ) . join ( posixSep )
13
+
11
14
const writeEdgeManifest = async ( ctx : PluginContext , manifest : Manifest ) => {
12
15
await mkdir ( ctx . edgeFunctionsDir , { recursive : true } )
13
16
await writeFile ( join ( ctx . edgeFunctionsDir , 'manifest.json' ) , JSON . stringify ( manifest , null , 2 ) )
@@ -107,10 +110,19 @@ const copyHandlerDependencies = async (
107
110
108
111
const parts = [ shim ]
109
112
113
+ const outputFile = join ( destDir , `server/${ name } .js` )
114
+
110
115
if ( wasm ?. length ) {
111
- parts . push (
112
- `import { decode as _base64Decode } from "../edge-runtime/vendor/deno.land/[email protected] /encoding/base64.ts";` ,
116
+ const base64ModulePath = join (
117
+ destDir ,
118
+ 'edge-runtime/vendor/deno.land/[email protected] /encoding/base64.ts' ,
113
119
)
120
+
121
+ const base64ModulePathRelativeToOutputFile = toPosixPath (
122
+ relative ( dirname ( outputFile ) , base64ModulePath ) ,
123
+ )
124
+
125
+ parts . push ( `import { decode as _base64Decode } from "${ base64ModulePathRelativeToOutputFile } ";` )
114
126
for ( const wasmChunk of wasm ?? [ ] ) {
115
127
const data = await readFile ( join ( srcDir , wasmChunk . filePath ) )
116
128
parts . push (
@@ -126,9 +138,9 @@ const copyHandlerDependencies = async (
126
138
parts . push ( `;// Concatenated file: ${ file } \n` , entrypoint )
127
139
}
128
140
const exports = `const middlewareEntryKey = Object.keys(_ENTRIES).find(entryKey => entryKey.startsWith("middleware_${ name } ")); export default _ENTRIES[middlewareEntryKey].default;`
129
- await mkdir ( dirname ( join ( destDir , `server/ ${ name } .js` ) ) , { recursive : true } )
141
+ await mkdir ( dirname ( outputFile ) , { recursive : true } )
130
142
131
- await writeFile ( join ( destDir , `server/ ${ name } .js` ) , [ ...parts , exports ] . join ( '\n' ) )
143
+ await writeFile ( outputFile , [ ...parts , exports ] . join ( '\n' ) )
132
144
}
133
145
134
146
const createEdgeHandler = async ( ctx : PluginContext , definition : NextDefinition ) : Promise < void > => {
0 commit comments