fix: patch mangle for windows (#1370)

This commit is contained in:
Baptiste Augrain 2023-01-07 12:16:19 +01:00 committed by GitHub
parent f73d7b632b
commit 15addf4476
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,9 @@
diff --git a/build/lib/compilation.ts b/build/lib/compilation.ts
index 2cc04d2c977..9029c6231ed 100644
--- a/build/lib/compilation.ts
+++ b/build/lib/compilation.ts
@@ -128,3 +128,3 @@ export function compileTask(src: string, out: string, build: boolean): () => Nod
mangleStream = es.through(function write(data: File) {
- const newContents = newContentsByFileName.get(data.path);
+ const newContents = newContentsByFileName.get(data.path.replace(/\\/g, '/'));
if (newContents !== undefined) {