Skip to content

Commit 88a66ac

Browse files
Merge pull request #4725 from NativeScript/fatme/fix-xml-restore
fix: restore application when the broken xml file is fixed
2 parents 8de2558 + 4b971de commit 88a66ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/services/webpack/webpack-compiler-service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@ export class WebpackCompilerService extends EventEmitter implements IWebpackComp
4242

4343
const files = result.emittedFiles
4444
.map((file: string) => path.join(platformData.appDestinationDirectoryPath, "app", file));
45+
const fallbackFiles = result.fallbackFiles
46+
.map((file: string) => path.join(platformData.appDestinationDirectoryPath, "app", file));
4547

4648
const data = {
4749
files,
4850
hmrData: {
4951
hash: result.hash,
50-
fallbackFiles: result.fallbackFiles
52+
fallbackFiles
5153
}
5254
};
5355

0 commit comments

Comments
 (0)