repackaging: all the repackaging changes squashed
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import {Provider} from "angular2/core";
|
||||
import {bootstrapApp, WORKER_APP_ROUTER} from "angular2/platform/worker_app";
|
||||
import {HashLocationStrategy, LocationStrategy} from 'angular2/platform/common';
|
||||
import {App} from "./index_common";
|
||||
import {Provider} from '@angular/core';
|
||||
import {bootstrapApp, WORKER_APP_ROUTER} from '../../../../@angular/platform-browser/src/worker_app';
|
||||
import {HashLocationStrategy, LocationStrategy} from '@angular/common';
|
||||
import {App} from './index_common';
|
||||
|
||||
export function main() {
|
||||
bootstrapApp(App,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {Component} from 'angular2/core';
|
||||
import {Component} from '@angular/core';
|
||||
@Component({selector: 'about', template: '<h1>About</h1>'})
|
||||
export class About {
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {Component} from 'angular2/core';
|
||||
import {Component} from '@angular/core';
|
||||
@Component({selector: 'contact', template: '<h1>Contact</h1>'})
|
||||
export class Contact {
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {Component} from 'angular2/core';
|
||||
import {Component} from '@angular/core';
|
||||
@Component({selector: 'start', template: '<h1>Start</h1>'})
|
||||
export class Start {
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,3 @@
|
||||
import {Provider} from 'angular2/core';
|
||||
import {bootstrapRender, WORKER_RENDER_ROUTER} from 'angular2/platform/worker_render';
|
||||
import {MessageBasedPlatformLocation} from "angular2/src/web_workers/ui/platform_location";
|
||||
import {bootstrapRender, WORKER_RENDER_ROUTER} from '../../../../@angular/platform-browser/src/worker_render';
|
||||
|
||||
let ref = bootstrapRender("loader.js", WORKER_RENDER_ROUTER);
|
||||
bootstrapRender("loader.js", WORKER_RENDER_ROUTER);
|
||||
|
@ -1,8 +1,8 @@
|
||||
import {Component} from 'angular2/core';
|
||||
import {Component} from '@angular/core';
|
||||
import {Start} from './components/start';
|
||||
import {About} from './components/about';
|
||||
import {Contact} from './components/contact';
|
||||
import {ROUTER_DIRECTIVES, RouteConfig, Route} from 'angular2/router';
|
||||
import {ROUTER_DIRECTIVES, RouteConfig, Route} from '@angular/router';
|
||||
|
||||
@Component({selector: 'app', directives: [ROUTER_DIRECTIVES], templateUrl: 'app.html'})
|
||||
@RouteConfig([
|
||||
|
Reference in New Issue
Block a user