Last active
May 25, 2017 22:25
-
-
Save beeman/b6402bccc9ab891d6437c2367545b0d8 to your computer and use it in GitHub Desktop.
Tutorial: Enable HRM in angular-cli apps: https://medium.com/@beeman/1b0d13b80130
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModuleRef, ApplicationRef } from '@angular/core'; | |
import { createNewHosts } from '@angularclass/hmr'; | |
export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => { | |
let ngModule: NgModuleRef<any>; | |
module.hot.accept(); | |
bootstrap().then(mod => ngModule = mod); | |
module.hot.dispose(() => { | |
const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef); | |
const elements = appRef.components.map(c => c.location.nativeElement); | |
const makeVisible = createNewHosts(elements); | |
ngModule.destroy(); | |
makeVisible(); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment