15.0.0-alpha.2212231000 • Published 1 year ago

ng-tue v15.0.0-alpha.2212231000

Weekly downloads
52
License
MIT
Repository
-
Last release
1 year ago

ng-tue

Build and Publishing

Run ng build ng-tue to build the project. The build artifacts will be stored in the dist/ directory.

After building your library with ng build ng-tue, go to the dist folder cd dist/ng-tue and run npm publish.

Running unit tests

ng test ng-tue

Running code coverage

ng test ng-tue --code-coverage true --watch false ng test ng-tue-form --code-coverage true --watch false ng test ng-tue-table --code-coverage true --watch false

CLI

Generate a component

ng g component --path path --skip-import --style none

eg

  • Generate t-calendar under form ng g component t-calendar --path projects/ng-tue/form/src/components --skip-import --style none

  • Generate component under ng-tue ng g component components/t-modal --project ng-tue

Generate a directive

  • Generate directive under ng-tue ng g directive directives/t-modal --project ng-tue

Generate a service

ng g service --path path

eg: ng g service form --path projects/ng-tue/form/src/services