UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

8 lines (6 loc) 261 B
import { chain, Rule } from '@angular-devkit/schematics'; import { buildOhayo } from '../utils/ohayo'; import { Schema } from './schema'; export default function (options: Schema): Rule { return chain([buildOhayo({ schematicName: 'empty', ...options })]); }