Skip to content

Commit

Permalink
fix(tables): fix #704
Browse files Browse the repository at this point in the history
  • Loading branch information
lexzhukov committed Feb 11, 2017
1 parent c85eae7 commit 0fbad7e
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,7 @@
"electron:start": "electron build",
"build:aot:prod": "npm run clean:dist && npm run clean:aot && webpack --config config/webpack.prod.js --progress --profile --bail",
"build:aot": "npm run build:aot:prod",
"ci:aot": "npm run lint && npm run test && npm run build:aot && npm run e2e",

This comment has been minimized.

Copy link
@turnerguo

turnerguo Feb 21, 2017

Could you please provide more details comment for each commit?
for example, why remove these scripts? or it's a mistake?

Thx. @lexzhukov

"ci:jit": "npm run lint && npm run test && npm run build:prod && npm run e2e",
"ci:nobuild": "npm run lint && npm test && npm run e2e",
"ci:testall": "npm run lint && npm run test && npm run build:prod && npm run e2e && npm run build:aot && npm run e2e",
"ci": "npm run ci:testall",
"clean:aot": "npm run rimraf -- compiled",
"e2e": "npm-run-all -p -r server:prod:ci e2e:only",
"e2e:only": "npm run protractor"
"clean:aot": "npm run rimraf -- compiled"
},
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/charts/charts.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Component} from '@angular/core';

@Component({
selector: 'maps',
styles: [],
template: `<router-outlet></router-outlet>`
})
export class Charts {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { NgUploaderOptions } from 'ngx-uploader';

@Component({
selector: 'layouts',
styles: [],
templateUrl: './layouts.html',
})
export class Layouts {
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/forms/forms.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Component} from '@angular/core';

@Component({
selector: 'forms',
styles: [],
template: `<router-outlet></router-outlet>`
})
export class Forms {
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/maps/maps.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Component} from '@angular/core';

@Component({
selector: 'maps',
styles: [],
template: `<router-outlet></router-outlet>`
})
export class Maps {
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/pages.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { MENU } from '../app.menu';

@Component({
selector: 'pages',
styles: [],
template: `
<ba-sidebar></ba-sidebar>
<ba-page-top></ba-page-top>
Expand Down
3 changes: 1 addition & 2 deletions src/app/pages/tables/tables.component.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import {Component} from '@angular/core';

@Component({
selector: 'forms',
styles: [],
selector: 'tables',
template: `<router-outlet></router-outlet>`
})
export class Tables {
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/ui/ui.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Component} from '@angular/core';

@Component({
selector: 'ui',
styles: [],
template: `<router-outlet></router-outlet>`
})
export class Ui {
Expand Down

0 comments on commit 0fbad7e

Please sign in to comment.