0.0.2 • Published 3 years ago

angular-schematic v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

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

  1. Run npm i angular-schematic.
  2. 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

  1. Clone this repository.
  2. Run npm install -g @angular-devkit/schematics-cli to install globally
  3. Run npm install, npm run build & npm link
  4. Run npm link angular-schematic in the Angular project directory
  5. 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 --help

Unit 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 publish

That's it!