@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
67 lines (66 loc) • 2.75 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.normalizeAssetPatterns = exports.MissingAssetSourceRootException = void 0;
/**
* @license
* Copyright Google Inc. 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
*/
const core_1 = require("@angular-devkit/core");
class MissingAssetSourceRootException extends core_1.BaseException {
constructor(path) {
super(`The ${path} asset path must start with the project source root.`);
}
}
exports.MissingAssetSourceRootException = MissingAssetSourceRootException;
function normalizeAssetPatterns(assetPatterns, host, root, projectRoot, maybeSourceRoot) {
// When sourceRoot is not available, we default to ${projectRoot}/src.
const sourceRoot = maybeSourceRoot || core_1.join(projectRoot, 'src');
const resolvedSourceRoot = core_1.resolve(root, sourceRoot);
if (assetPatterns.length === 0) {
return [];
}
return assetPatterns
.map(assetPattern => {
// Normalize string asset patterns to objects.
if (typeof assetPattern === 'string') {
const assetPath = core_1.normalize(assetPattern);
const resolvedAssetPath = core_1.resolve(root, assetPath);
// Check if the string asset is within sourceRoot.
if (!resolvedAssetPath.startsWith(resolvedSourceRoot)) {
throw new MissingAssetSourceRootException(assetPattern);
}
let glob, input, output;
let isDirectory = false;
try {
isDirectory = host.isDirectory(resolvedAssetPath);
}
catch (_a) {
isDirectory = true;
}
if (isDirectory) {
// Folders get a recursive star glob.
glob = '**/*';
// Input directory is their original path.
input = assetPath;
}
else {
// Files are their own glob.
glob = core_1.basename(assetPath);
// Input directory is their original dirname.
input = core_1.dirname(assetPath);
}
// Output directory for both is the relative path from source root to input.
output = core_1.relative(resolvedSourceRoot, core_1.resolve(root, input));
// Return the asset pattern in object format.
return { glob, input, output };
}
else {
// It's already an AssetPatternObject, no need to convert.
return assetPattern;
}
});
}
exports.normalizeAssetPatterns = normalizeAssetPatterns;
;