Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 474 Bytes

README.md

File metadata and controls

50 lines (33 loc) · 474 Bytes

typescript-package

Template for building node packages using Typescript

environment

  • nvm to manage node versions.
brew install nvm
  • install node version
nvm install

house-keeping

  • install dependencies
npm ci
  • build it
npm run build
  • format it
npm run  format
  • lint it
npm run lint
npm run lint --fix
  • test it
npm test