This project was generated with Angular CLI version 8.1.1.
This project was created to be used with the ngrx-entity-crud library, to understand how to use it read this guide.
You will be able to create CRUD Angular NgRx applications.
compile the library:
npm run build
publish library:
go to the "libs/ngrx-entity-crud" folder.
npm login (authentication)
npm publish
Package linking:
cd <library-compiled>
npm link
go to the main folder of the project where to use the library:
npm link <library-name>
if the error appears:
... 'No provider for Injector!' ...
edit the file angular.json, set the value of "projects/*/architect/build/options":
"preserveSymlinks": true.
if you don't see changes to the library under development:
temporarily remove the library reference from the "package.json" file and rerun "npm link ".