Update to Angular 5 and perform a *real* production build.

This commit is contained in:
Manuel Friedli 2017-11-07 23:29:36 +01:00
parent aca588f6b5
commit 0f857d4770
5 changed files with 1098 additions and 403 deletions

View file

@ -1,15 +1,13 @@
import {Component, OnInit} from '@angular/core';
import {ConverterRegistryService} from './converterregistry.service';
import {InputComponentManagerService} from './inputcomponentmanager.service';
import {NativeLibraryWrapperService} from './nativelibrarywrapper.service';
import {Step} from './step';
import {Converter} from './converter/converter';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
providers: [ConverterRegistryService, InputComponentManagerService, NativeLibraryWrapperService]
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
public steps: Step[] = [];