Update dependencies (mostly angular2 to rc.0).
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import { bootstrap } from 'angular2/platform/browser';
|
||||
import { HTTP_PROVIDERS } from 'angular2/http';
|
||||
import { bootstrap } from '@angular/platform-browser-dynamic';
|
||||
|
||||
import { MainAppComponent } from './main-app.component';
|
||||
|
||||
@@ -9,7 +8,6 @@ import {MapperService} from './services/mapper.service';
|
||||
process.stdout = require('browser-stdout')();
|
||||
|
||||
bootstrap(MainAppComponent, [
|
||||
HTTP_PROVIDERS,
|
||||
DataProviderService,
|
||||
MapperService
|
||||
]).catch(err => console.error(err));
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Component, OnInit, Input, OnChanges, SimpleChange } from 'angular2/core';
|
||||
import { Component, OnInit, Input, OnChanges, SimpleChange } from '@angular/core';
|
||||
|
||||
import {KeyAction} from '../../config-serializer/config-items/KeyAction';
|
||||
import {KeystrokeAction} from '../../config-serializer/config-items/KeystrokeAction';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Component, OnInit, Input} from 'angular2/core';
|
||||
import { Component, OnInit, Input} from '@angular/core';
|
||||
|
||||
import {Module} from '../../config-serializer/config-items/Module';
|
||||
import {SvgModule} from './svg-module.model';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Component, OnInit, Input } from 'angular2/core';
|
||||
import { Component, OnInit, Input } from '@angular/core';
|
||||
|
||||
import {SvgKeyboardKey} from './svg-keyboard-key.model';
|
||||
import {SvgKeyboardKeyComponent} from './svg-keyboard-key.component';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Component, OnInit, AfterViewInit, Renderer, ViewChildren, QueryList, ElementRef} from 'angular2/core';
|
||||
import { Component, OnInit, AfterViewInit, Renderer, ViewChildren, QueryList, ElementRef} from '@angular/core';
|
||||
|
||||
import {UhkConfiguration} from '../config-serializer/config-items/UhkConfiguration';
|
||||
import {Layers} from '../config-serializer/config-items/Layers';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Injectable } from 'angular2/core';
|
||||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable()
|
||||
export class DataProviderService {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Injectable } from 'angular2/core';
|
||||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable()
|
||||
export class MapperService {
|
||||
|
||||
Reference in New Issue
Block a user