indorse-sign-aca-extension
v0.0.1
Published
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0. This extension contain all custom changes and the development which can be re-use/install any next release of ACA project.
Readme
IndorseSignAcaExtension
This library was generated with Angular CLI version 7.2.0. This extension contain all custom changes and the development which can be re-use/install any next release of ACA project.
Code scaffolding
Run ng generate component component-name --project indorse-sign-aca-extension to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project indorse-sign-aca-extension.
Note: Don't forget to add
--project indorse-sign-aca-extensionor else it will be added to the default project in yourangular.jsonfile.
Build
Run ng build indorse-sign-aca-extension to build the project. The build artifacts will be stored in the dist/ directory.
Publishing
After building your library with ng build indorse-sign-aca-extension, go to the dist folder cd dist/indorse-sign-aca-extension and run npm publish.
Running unit tests
Run ng test indorse-sign-aca-extension to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help or go check out the Angular CLI README.
Automated Installation
Install the ngi as a global tool:
npm i -g @ngstack/installIn the project root:
ngi indorse-sign-aca-extension --module=extensionsUpdate app.extensions.json and append a reference to the plugin definition:
{
"$references": ["indorse-sign-aca-extension.plugin.json"]
}Manual Installation
Install the extension library
npm i indorse-sign-aca-extensionUpdate the extensions.module.ts and import corresponding module.
import { NgModule } from '@angular/core';
import { IndorseSignAcaExtensionModule } from 'indorse-sign-aca-extension';
// Main entry point for external extensions only.
// For any application-specific code use CoreExtensionsModule instead.
@NgModule({
imports: [IndorseSignAcaExtensionModule]
})
export class AppExtensionsModule {}Setup the resource references in the angular.json assets section:
{
"glob": "**/*.json",
"input": "node_modules/indorse-sign-aca-extension/assets",
"output": "./assets/plugins"
}Update app.extensions.json and append a reference to the plugin definition:
{
"$references": ["indorse-sign-aca-extension.plugin.json"]
}