Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 406 Bytes

readme.md

File metadata and controls

27 lines (20 loc) · 406 Bytes

My Typescript Hexagonal Architecture

Linking a local package

Note: The lib-name is the name of the package in the package.json file.

  1. In the library's package.json directory
npm link
  1. In the host project directory
npm link lib-name

Deleting a link

  1. unlink the package
npm unlink lib-name
  1. remove the link
npm rm --global lib-name