If I create an angular library like this:
ng new libraries-workspace --create-application=false
cd libraries-workspace
ng generate library test-library
And now I build the library
ng build test-library --watch
Now if I create a new angular application in a completely different folder (away from the workspace)
ng new test-project
cd test-project
How can I reference or install my library without publishing to NPM. So basically I want to install the library from a folder
something like this:
ng add test-library c:\libraries-workspace\dist\test-library...
I don't want to add my project to the workspace folder.
Thanks