Skip to content

Commit

Permalink
fix(nx): add a message about dep graph server
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Oct 18, 2019
1 parent 7df0e58 commit 5b8989f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/workspace/src/command-line/dep-graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
readWorkspaceJson,
ProjectNode
} from './shared';
import { output } from './output';

export function startServer(
projects: ProjectNode[],
Expand All @@ -32,6 +33,9 @@ export function startServer(
});

app.listen(4211, '127.0.0.1');
output.note({
title: 'Dep graph started started at http://localhost:4211'
});

opn('http://localhost:4211', {
wait: false
Expand Down

0 comments on commit 5b8989f

Please sign in to comment.