mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 05:24:57 +08:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import { BuilderContext } from '@angular-devkit/architect';
|
|
import { existsSync, promises as fsPromises } from 'fs';
|
|
import { join } from 'path';
|
|
import { normalizeCacheOptions } from './normalize-cache';
|
|
|
|
/** Delete stale cache directories used by previous versions of build-angular. */
|
|
export async function purgeStaleBuildCache(context: BuilderContext): Promise<void> {
|
|
const projectName = context.target?.project;
|
|
if (!projectName) {
|
|
return;
|
|
}
|
|
|
|
const metadata = await context.getProjectMetadata(projectName);
|
|
const { basePath, path, enabled } = normalizeCacheOptions(metadata, context.workspaceRoot);
|
|
|
|
if (!enabled || !existsSync(basePath)) {
|
|
return;
|
|
}
|
|
|
|
const entriesToDelete = (await fsPromises.readdir(basePath, { withFileTypes: true }))
|
|
.filter((d) => join(basePath, d.name) !== path && d.isDirectory())
|
|
.map((d) => {
|
|
const subPath = join(basePath, d.name);
|
|
|
|
return fsPromises
|
|
.rm(subPath, { force: true, recursive: true, maxRetries: 3 })
|
|
.catch(() => void 0);
|
|
});
|
|
|
|
await Promise.all(entriesToDelete);
|
|
}
|