Skip to content

Commit

Permalink
refactor(app): move to app folder
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickJS committed Jan 8, 2016
1 parent aab6ac0 commit 745d4d1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {bootstrap} from 'angular2/platform/browser';
// import {bootstrap} from 'angular2-universal-preview';

import {App} from './app';
import {App} from './app/app';

bootstrap(App);
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path';
import * as express from 'express';
import * as universal from 'angular2-universal-preview';
// Angular 2
import {App} from './app';
import {App} from './app/app';

let app = express();
let root = path.join(path.resolve(__dirname, '..'));
Expand Down

0 comments on commit 745d4d1

Please sign in to comment.