-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathnormalize-cache.js
43 lines (43 loc) · 1.54 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
"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.0.0-next.8+sha-100571f';
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 { enabled = true, 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),
};
}