Skip to content

Commit

Permalink
cleanup(core): remove the indirection left after inlining ta… (#9469)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Mar 24, 2022
1 parent 22a9914 commit d4b5c30
Show file tree
Hide file tree
Showing 376 changed files with 4,594 additions and 5,086 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -188,7 +188,7 @@ jobs:
- run:
name: Run E2E Tests
command: |
npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-storybook,e2e-react-native,e2e-detox --parallel=1
npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-storybook,e2e-react-native,e2e-detox,e2e-workspace-integrations --parallel=1
no_output_timeout: 45m
- run:
name: Stop All Running Agents for This CI Run
Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/fetch-project-graph-service.ts
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import { ProjectGraphService } from './interfaces';

export class FetchProjectGraphService implements ProjectGraphService {
Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/hooks/use-environment-config.ts
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import { useRef } from 'react';
import { AppConfig } from '../interfaces';

Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/interfaces.ts
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';

export interface ProjectGraphList {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/local-project-graph-service.ts
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import { ProjectGraphService } from './interfaces';

export class LocalProjectGraphService implements ProjectGraphService {
Expand Down
1 change: 1 addition & 0 deletions dep-graph/client/src/app/machines/selectors.ts
@@ -1,3 +1,4 @@
// nx-ignore-next-line
import type { ProjectGraphProjectNode } from '@nrwl/devkit';
import { DepGraphSelector } from '../hooks/use-dep-graph-selector';
import { WorkspaceLayout } from '../interfaces';
Expand Down
3 changes: 2 additions & 1 deletion dep-graph/client/src/app/mock-project-graph-service.ts
@@ -1,9 +1,10 @@
// nx-ignore-next-line
import type {
ProjectGraphDependency,
ProjectGraphProjectNode,
} from '@nrwl/devkit';
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import { ProjectGraphService } from '../app/interfaces';

export class MockProjectGraphService implements ProjectGraphService {
Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/shell.tsx
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import Tippy from '@tippyjs/react';
import { useEffect, useState } from 'react';
import DebuggerPanel from './debugger-panel';
Expand Down
1 change: 1 addition & 0 deletions dep-graph/client/src/app/sidebar/project-list.tsx
@@ -1,3 +1,4 @@
// nx-ignore-next-line
import type { ProjectGraphNode } from '@nrwl/devkit';
import { useDepGraphService } from '../hooks/use-dep-graph';
import { useDepGraphSelector } from '../hooks/use-dep-graph-selector';
Expand Down
1 change: 1 addition & 0 deletions dep-graph/client/src/app/util-cytoscape/edge.ts
@@ -1,3 +1,4 @@
// nx-ignore-next-line
import type { ProjectGraphDependency } from '@nrwl/devkit';
import * as cy from 'cytoscape';

Expand Down
1 change: 1 addition & 0 deletions dep-graph/client/src/app/util-cytoscape/project-node.ts
@@ -1,3 +1,4 @@
// nx-ignore-next-line
import type { ProjectGraphProjectNode } from '@nrwl/devkit';
import * as cy from 'cytoscape';
import { parseParentDirectoriesFromPilePath } from '../util';
Expand Down
1 change: 1 addition & 0 deletions dep-graph/client/src/app/util.ts
@@ -1,3 +1,4 @@
// nx-ignore-next-line
import { ProjectGraphDependency } from '@nrwl/devkit';

export function trimBackSlash(value: string): string {
Expand Down
2 changes: 1 addition & 1 deletion dep-graph/client/src/globals.d.ts
@@ -1,5 +1,5 @@
// nx-ignore-next-line
import type { DepGraphClientResponse } from '@nrwl/workspace/src/command-line/dep-graph';
import type { DepGraphClientResponse } from 'nx/src/command-line/dep-graph';
import { AppConfig } from './app/interfaces';

export declare global {
Expand Down

1 comment on commit d4b5c30

@vercel
Copy link

@vercel vercel bot commented on d4b5c30 Mar 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.