Skip to content

Commit

Permalink
cleanup(dep-graph): fix watch mode dev environment
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjfulcher committed Apr 1, 2022
1 parent d58d8e4 commit 4025925
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion dep-graph/client/src/app/mock-project-graph-service.ts
Expand Up @@ -21,6 +21,13 @@ export class MockProjectGraphService implements ProjectGraphService {
data: {
root: 'apps/app1',
tags: [],
files: [
{
file: 'some/file.ts',
hash: 'ecccd8481d2e5eae0e59928be1bc4c2d071729d7',
deps: ['existing-lib-1'],
},
],
},
},
{
Expand All @@ -29,6 +36,7 @@ export class MockProjectGraphService implements ProjectGraphService {
data: {
root: 'libs/lib1',
tags: [],
files: [],
},
},
],
Expand All @@ -37,7 +45,7 @@ export class MockProjectGraphService implements ProjectGraphService {
{
source: 'existing-app-1',
target: 'existing-lib-1',
type: 'statis',
type: 'static',
},
],
'existing-lib-1': [],
Expand Down Expand Up @@ -70,6 +78,7 @@ export class MockProjectGraphService implements ProjectGraphService {
data: {
root: type === 'app' ? `apps/${name}` : `libs/${name}`,
tags: [],
files: [],
},
};
}
Expand Down

0 comments on commit 4025925

Please sign in to comment.