0.0.2 • Published 5 years ago
angular-schematic v0.0.2
Getting Started With Schematics
This repository is a basic Schematic implementation that serves as a starting point to create and publish Schematics to NPM.
Used to generate modules, containers, components, and entities for Angular projects.
Usage
- Run
npm i angular-schematic. - Run
ng generate angular-schematic:<schematic>to generate files (schematic= module, container, component, or entity)
Important Notes
When generating components or containers: If the project has an import error for waitForAsync in <component-name>.component.spec.ts, update all instances to async.
Developing
- Clone this repository.
- Run
npm install -g @angular-devkit/schematics-clito install globally - Run
npm install,npm run build&npm link - Run
npm link angular-schematicin the Angular project directory - Run
ng generate angular-schematic:<schematic>to generate files (schematic= module, container, component, or entity)
Testing
To test locally, install @angular-devkit/schematics-cli globally and use the schematics command line tool. That tool acts the same as the generate command of the Angular CLI, but also has a debug mode.
Check the documentation with
schematics --helpUnit Testing
npm run test will run the unit tests, using Jasmine as a runner and test framework.
Publishing
To publish, simply do:
npm run build
npm publishThat's it!