-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormalize-cache.js
45 lines (45 loc) · 1.69 KB
/
normalize-cache.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"use strict";
/**
* @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.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.normalizeCacheOptions = normalizeCacheOptions;
const node_path_1 = require("node:path");
/** Version placeholder is replaced during the build process with actual package version */
const VERSION = '20.1.0-next.0+sha-2027d1b';
function hasCacheMetadata(value) {
return (!!value &&
typeof value === 'object' &&
'cli' in value &&
!!value['cli'] &&
typeof value['cli'] === 'object' &&
'cache' in value['cli']);
}
function normalizeCacheOptions(projectMetadata, worspaceRoot) {
const cacheMetadata = hasCacheMetadata(projectMetadata) ? projectMetadata.cli.cache : {};
const {
// Webcontainers do not currently benefit from persistent disk caching and can lead to increased browser memory usage
enabled = !process.versions.webcontainer, environment = 'local', path = '.angular/cache', } = cacheMetadata;
const isCI = process.env['CI'] === '1' || process.env['CI']?.toLowerCase() === 'true';
let cacheEnabled = enabled;
if (cacheEnabled) {
switch (environment) {
case 'ci':
cacheEnabled = isCI;
break;
case 'local':
cacheEnabled = !isCI;
break;
}
}
const cacheBasePath = (0, node_path_1.resolve)(worspaceRoot, path);
return {
enabled: cacheEnabled,
basePath: cacheBasePath,
path: (0, node_path_1.join)(cacheBasePath, VERSION),
};
}