afrisure-library-workspace
v0.0.1
Published
``` ng new afrisure-library-workspace --create-application=false cd afrisure-library-workspace ```
Downloads
119
Readme
Create New workspace
ng new afrisure-library-workspace --create-application=false
cd afrisure-library-workspace
Create new library project
ng generate library afrisure-test-library
Build
ng build afrisure-test-library
Publishing to NPM
Make it Private
package.json
{
"name": "afrisure-test-library",
"version": "0.0.1",
"private": true //Make it private
}
{
"publishConfig": {
"access": "restricted"
}
}
Publish
cd dist/afrisure-test-library
npm publish --access restricted