bumped core-js

This commit is contained in:
Eugene Pankov
2019-05-24 20:30:42 +02:00
parent c32d8f3497
commit 9ce04e4945
5 changed files with 50 additions and 17 deletions

View File

@@ -1,9 +1,8 @@
import 'zone.js'
import 'core-js/es7/reflect'
import 'core-js/core/delay'
import 'core-js/proposals/reflect-metadata'
import 'rxjs'
import isDev = require('electorn-is-dev')
import isDev = require('electron-is-dev')
import './global.scss'
import './toastr.scss'

View File

@@ -3,8 +3,6 @@ import * as path from 'path'
const nodeModule = require('module')
const nodeRequire = (global as any).require
declare function delay (ms: number): Promise<void>
function normalizePath (path: string): string {
const cygwinPrefix = '/cygdrive/'
if (path.startsWith(cygwinPrefix)) {
@@ -163,7 +161,6 @@ export async function loadPlugins (foundPlugins: IPluginInfo[], progress: Progre
} catch (error) {
console.error(`Could not load ${foundPlugin.name}:`, error)
}
await delay(1)
index++
}
progress(1, 1)