Skip to content

Commit 45c01d5

Browse files
author
Luca Forstner
committed
fix: Fix file detection when uploading files with debug IDs
1 parent a70ab2d commit 45c01d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/bundler-plugin-core/src/debug-id-upload.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,10 @@ export function createDebugIdUploadFunction({
172172
{
173173
include: [
174174
{
175-
paths: [tmpUploadFolder],
175+
paths: [path.join(tmpUploadFolder, "**")],
176176
rewrite: false,
177177
dist: dist,
178+
stripCommonPrefix: false,
178179
},
179180
],
180181
}

0 commit comments

Comments
 (0)