@ynnck/reactive-navigation
v0.0.5
Published
## Steps for building a npm library with nx workspaces
Downloads
1
Readme
Reactive navigation
Steps for building a npm library with nx workspaces
- nx g lib <%name%> --publishable --importPath <%importPath%>
- Remove path alias in tsconfig
- nx build <%name%>
- cd dist/libs/<%name%> && npm publish
- npm link
- cd ../.. && npm link "<%npmPackageName%>"
- nx build <%name%> --watch
- Use the npm link name in your Angular files
- mark dist/libs/<%name%> as not excluded in Webstorm
Running unit tests
Run nx test reactive-navigation
to execute the unit tests.