Skip to content

Instantly share code, notes, and snippets.

@AvocadoVenom
Last active December 12, 2019 22:00
Show Gist options
  • Select an option

  • Save AvocadoVenom/db961c163aac3a72bf7dd4bcd63819b0 to your computer and use it in GitHub Desktop.

Select an option

Save AvocadoVenom/db961c163aac3a72bf7dd4bcd63819b0 to your computer and use it in GitHub Desktop.
Angular schematic : data folders
function createDataRelatedFolders(options: ModuleOptions): Rule {
return (tree: Tree, _: SchematicContext) => {
tree.create(normalize(`${options.name}/data/models/.gitkeep`), '');
tree.create(normalize(`${options.name}/data/services/.gitkeep`), '');
return tree;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment