@nxworker/workspace
Version:
Nx plugin providing generators for managing workspace files, including the move-file generator for safely moving files between projects while updating all imports
16 lines (15 loc) • 471 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "buildFileNames", {
enumerable: true,
get: function() {
return buildFileNames;
}
});
const _fileextensions = require("../constants/file-extensions");
function buildFileNames(baseNames) {
return baseNames.flatMap((base)=>_fileextensions.entrypointExtensions.map((ext)=>`${base}.${ext}`));
}
//# sourceMappingURL=build-file-names.js.map