Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 643 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 643 Bytes

NgLibrarySchematics

A very simple Angular workspace with a library containing schematics. Detailed process in this article : Add schematics to Angular library

Just create a new Angular project and run the ng add command.

Usage

  • ng new myApp
  • cd myApp
  • ng add @aboudard/ng-lib

Application configuration

In the newly created application, if you want to use the exposed assets, modify the angular.json file, and add an assets entry :

{
    "glob": "**/*",
    "input": "node_modules/@aboudard/ng-lib/assets",
    "output": "assets"
}