refactor(ngcc): move locking code into its own folder (#35861)

PR Close #35861
This commit is contained in:
Pete Bacon Darwin
2020-03-04 12:49:36 +00:00
committed by Matias Niemelä
parent 94fa140888
commit 4acd658635
16 changed files with 643 additions and 598 deletions

View File

@ -10,10 +10,10 @@
import * as cluster from 'cluster';
import {AsyncLocker} from '../../locking/async_locker';
import {Logger} from '../../logging/logger';
import {PackageJsonUpdater} from '../../writing/package_json_updater';
import {AnalyzeEntryPointsFn, CreateCompileFn, Executor} from '../api';
import {AsyncLocker} from '../lock_file';
import {ClusterMaster} from './master';
import {ClusterWorker} from './worker';