Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 675 Bytes

DEPLOYMENT.md

File metadata and controls

47 lines (29 loc) · 675 Bytes

NPM Deployment

Install typescript

This is a 1 time setup. Skip if you already have typescript installed globally.

  1. Use node version v16.15.1 or lts/gallium
nvm use lts/gallium
  1. Install typescript globally
npm install -g typescript

NPM login

To login and save the npm user on your machine:

npm adduser

Retrieve the user creds from 1Password vault > HaloDAO npm account entry

Deployment steps

  1. Bump version

Update the project's version number indicated on package.json

  1. Build the project
tsc
  1. Publish a new release
npm run npm-publish
  1. Don't forget to push the version change on the repo