Skip to content

Instantly share code, notes, and snippets.

@radekwarisch
Last active February 9, 2021 17:37
Show Gist options
  • Save radekwarisch/4b917f149a14d443ff27a24c8388843c to your computer and use it in GitHub Desktop.
Save radekwarisch/4b917f149a14d443ff27a24c8388843c to your computer and use it in GitHub Desktop.
Copy template plugins
import {
forEach,
rename,
FileEntry
} from '@angular-devkit/schematics';
export const maybeExcludeTemplates = <TInputType>({
options,
}: TInputType) => forEach(maybeExcludeFile(options));
export const overwriteEJSExtension = <TInputType>({
config,
fileName,
}: TInputType) => rename(isEJS, overwriteExtension({
config,
fileName,
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment