Last active
December 10, 2019 23:14
-
-
Save AvocadoVenom/3f43ed139a8f9975ad50cedb7e7849e5 to your computer and use it in GitHub Desktop.
Angular schematic : create an empty folder with .gitkeep file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function scaffoldSchematics(options: any): Rule { | |
| return (tree: Tree, _context: SchematicContext) => { | |
| return tree.create('path/to/folder/.gitkeep'), ''); | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment