UNPKG

@ng-zen/cli

Version:

A CLI tool for generating customizable, modern Angular UI components using schematics.

10 lines (7 loc) 247 B
import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics'; export function ngAdd(): Rule { return async (tree: Tree, context: SchematicContext) => { context.logger.info('🔧 Setting up ng-zen...'); return tree; }; }