This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.14.
npm install raise-common-libThis library was generated with Angular CLI version 8.2.14.
Run npm run build to build the project. The build artifacts will be stored in the dist/ directory.
After building your library with npm run build, go to the dist folder cd dist/raise-common-lib and run npm publish.
bash
$ npm install raise-common-lib
`
- ### Set angular.json
`json
"projects": {
"lpInvestor": {
"projectType": "application",
"architect": {
"build": {
"options": {
...
"assets": [
...
{
"glob": "*/",
"input": "node_modules/raise-common-lib/src/assets/",
"output": "/assets/"
}
],
"styles": [
...
"node_modules/raise-common-lib/src/assets/style/styles.scss",
"src/styles.scss",
],
}
...
...
...
`- ### Import Module
`tsx
//app.module.tsimport { RaiseCommonLibModule } from "raise-common-lib";
@NgModule({
imports: [
...
RaiseCommonLibModule
],
``