Skip to content

Commit 0d33f22

Browse files
hanslfilipesilva
authored andcommitted
fix(@angular-devkit/core): remove circular dependencies
1 parent 910cf41 commit 0d33f22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/angular_devkit/core/src/virtual-fs/host/record.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ import {
1313
throwError,
1414
} from 'rxjs';
1515
import { concatMap, map, reduce, switchMap, toArray } from 'rxjs/operators';
16-
import { Path, PathFragment } from '..';
1716
import {
1817
FileAlreadyExistException,
1918
FileDoesNotExistException,
2019
PathIsDirectoryException,
2120
UnknownException,
22-
} from '../..';
21+
} from '../../exception';
22+
import { Path, PathFragment } from '../path';
2323
import {
2424
FileBuffer,
2525
Host,

packages/angular_devkit/core/src/virtual-fs/host/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88
import { Observable } from 'rxjs';
9-
import { Path, join, normalize } from '..';
9+
import { Path, join, normalize } from '../path';
1010
import { fileBufferToString, stringToFileBuffer } from './buffer';
1111
import { FileBuffer, HostWatchEvent, HostWatchOptions, Stats } from './interface';
1212
import { SimpleMemoryHost, SimpleMemoryHostStats } from './memory';

0 commit comments

Comments
 (0)