2017-04-11 20:45:59 +00:00
|
|
|
(<any>console).timeStamp('entry point')
|
2016-12-23 09:06:53 +00:00
|
|
|
|
|
|
|
import 'core-js'
|
|
|
|
import 'zone.js/dist/zone.js'
|
|
|
|
import 'core-js/es7/reflect'
|
2017-04-16 21:04:29 +00:00
|
|
|
import 'rxjs'
|
2016-12-23 09:06:53 +00:00
|
|
|
|
|
|
|
// Always land on the start view
|
|
|
|
location.hash = ''
|
|
|
|
|
|
|
|
import { enableProdMode } from '@angular/core'
|
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
|
|
|
|
|
2017-04-23 22:34:07 +00:00
|
|
|
import { getRootModule } from './app.module'
|
2017-04-24 19:26:59 +00:00
|
|
|
import { findPlugins, loadPlugins } from './plugins'
|
2017-04-23 22:34:07 +00:00
|
|
|
|
2017-04-11 00:22:48 +00:00
|
|
|
if ((<any>global).require('electron-is-dev')) {
|
2016-12-23 09:06:53 +00:00
|
|
|
console.warn('Running in debug mode')
|
|
|
|
} else {
|
|
|
|
enableProdMode()
|
|
|
|
}
|
|
|
|
|
2017-04-24 19:26:59 +00:00
|
|
|
findPlugins().then(async plugins => {
|
|
|
|
let pluginsModules = loadPlugins(plugins, (current, total) => {
|
|
|
|
(<HTMLElement>document.querySelector('.progress .bar')).style.width = 100 * current / total + '%'
|
|
|
|
})
|
|
|
|
let module = await getRootModule(pluginsModules)
|
2017-04-15 13:20:18 +00:00
|
|
|
platformBrowserDynamic().bootstrapModule(module)
|
|
|
|
})
|