JavaScript utilities implemented in Typescript
No global modules other than npm are necessary.
- Run
npm installonce after checking out. - Then, run either
npm testfor a single full build cycle (clean, compile, lint, test), ornpm startfor running the full cycle initially and then watch for file changes which will trigger appropriate parts of the build cycle (compile, lint, test). The watch mode is not bulletproof: It works for file updates, but you may get problems if you rename or delete files. - Before bumping the version, make sure the copyright year range in the license file is up to date.
- Run
npm run standard-versioninstead ofnpm versionto bump the version. - Publish with
npm publish --access public. This will run the full build cycle before publishing.