Skip to content

Commit

Permalink
chore: npm bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mgechev committed Oct 10, 2018
1 parent ab82ebe commit e4f68e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngrev",
"productName": "ngrev",
"description": "Reverse Engineering for Angular",
"version": "0.0.24",
"version": "0.0.25",
"author": "Minko Gechev <mgechev@gmail.com>",
"homepage": "http://example.com",
"license": "MIT",
Expand Down
5 changes: 3 additions & 2 deletions src/background/states/app.state.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { State } from './state';
import { Metadata, VisualizationConfig, Graph } from '../../shared/data-format';
import { Metadata, VisualizationConfig, Graph, Layout } from '../../shared/data-format';
import { ProjectSymbols } from 'ngast';
import { ModuleTreeState } from './module-tree.state';
import { AppModuleState } from './app-module.state';
Expand All @@ -8,7 +8,7 @@ import { ProviderState } from './provider.state';
import { PipeState } from './pipe.state';

const CompositeStateID = '$$$composite-state$$$';
export const Title = 'Application view';
const Title = 'Application View';

export class AppState extends State {
private states: State[] = [];
Expand All @@ -35,6 +35,7 @@ export class AppState extends State {

getData(): VisualizationConfig<any> {
const data: VisualizationConfig<any> = {
layout: Layout.Regular,
title: Title,
graph: {
nodes: [],
Expand Down

0 comments on commit e4f68e0

Please sign in to comment.