Skip to content

Commit a81658c

Browse files
committed
fix: handle dependency paths for packaged module
1 parent bee85d4 commit a81658c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/build/functions/server.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ export const createServerHandler = async () => {
2222
join(PLUGIN_DIR, 'dist/run/handlers/cache.cjs'),
2323
join(PLUGIN_DIR, 'dist/run/handlers/next.cjs'),
2424
],
25-
{ base: PLUGIN_DIR, ignore: ['package.json', 'node_modules/next/**'] },
25+
{ ignore: ['package.json', 'node_modules/next/**'] },
2626
)
2727

2828
// copy the handler dependencies
2929
await Promise.all(
3030
[...fileList].map((path) =>
31-
cp(join(PLUGIN_DIR, path), join(process.cwd(), SERVER_HANDLER_DIR, path), {
32-
recursive: true,
33-
}),
31+
cp(
32+
path,
33+
join(process.cwd(), SERVER_HANDLER_DIR, path.replace(`node_modules/${pkg.name}/`, '')),
34+
{ recursive: true },
35+
),
3436
),
3537
)
3638

0 commit comments

Comments
 (0)