My versions are:
1. npm v6.14.12
2. node v10.24.1
3. angular-cli v8.0.2
I created a library with these commands:
Step 1: ng new my-workspace --create-application=false
Step 2: cd my-workspace
then ng generate library my-lib
Step 3: cd projects/my-lib/src/lib
Step 4: npm install bootstrap --save
After this I can see my-workspace/projects/my-lib/package.json
"dependencies": {
"bootstrap": "^5.0.1"
}
But now I'm stuck. I was to told to add bootstrap either in style.css or angular.json. But these files will not be there for a library code. Please tell me how to proceed with this. Almost all the articles that I found were for a full fledged angular application.
This means