fix(misc): fix affected:dep-graph file output (#6581)

This commit is contained in:
Philip Fulcher 2021-08-07 07:17:01 -06:00 committed by GitHub
parent c13c02d27e
commit 6b6b66c325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 12 deletions

View File

@ -56,10 +56,7 @@ export class AppComponent {
dependencies: project.dependencies,
nodes: nodes,
};
window.affected = project.affected;
window.exclude = project.exclude;
window.focusedProject = project.focus;
window.groupByFolder = project.groupByFolder;
window.projectGraphList = this.config.projectGraphs;
window.selectedProjectGraph = projectGraphId;
window.workspaceLayout = workspaceLayout;

View File

@ -1,14 +1,6 @@
import { AppComponent } from './app/app';
import { LocalProjectGraphService } from './app/local-project-graph-service';
import { environment } from './environments/environment';
import { projectGraphs } from './graphs';
if (environment.environment !== 'release') {
window.affected = [];
window.exclude = [];
window.projectGraphList = projectGraphs;
window.selectedProjectGraph = projectGraphs[0].id;
}
if (environment.environment === 'dev-watch') {
window.watch = true;