@angular-devkit/schematics#FileEntry TypeScript Examples
The following examples show how to use
@angular-devkit/schematics#FileEntry.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: applyTemplates.ts From garment with MIT License | 6 votes |
export function applyTemplates<T>(
options: T,
pathTemplateOptions: PathTemplateOptions
): Rule {
return forEach(
when(
path => path.endsWith('.template'),
composeFileOperators([
applyContentTemplate(options),
// See above for this weird cast.
applyPathTemplate(
(options as {}) as PathTemplateData,
pathTemplateOptions
),
entry => {
return {
content: entry.content,
path: entry.path.replace(TEMPLATE_FILENAME_RE, '')
} as FileEntry;
}
])
)
);
}
Example #2
Source File: templates.ts From cli with Apache License 2.0 | 6 votes |
function overwriteIfExists(host: Tree): Rule {
return forEach((fileEntry: FileEntry) => {
if (host.exists(fileEntry.path)) {
host.overwrite(fileEntry.path, fileEntry.content);
return null;
}
return fileEntry;
});
}