@hubscience/hubscience-common v0.7.0
hubscience-common
Local development - create symlink
cd ./hubscience-common # go into the package directory npm link # creates global link cd ./hubscience-frontend # go into some other package directory (hubscience-frontend or hubscience-backend). npm link @hubscience/hubscience-common # link-install the package
Local development - remove symlink
cd ./hubscience-common # go into the package directory npm unlink # remove global link cd ./hubscience-frontend # go into some other package directory (hubscience-frontend or hubscience-backend). npm unlink @hubscience/hubscience-common # unlink the given package (--no-save is optional) npm i @hubscience/hubscience-common # install package from original source