Table data structure
npm install @matrixai/tableTable data structure.
``sh`
npm install --save @matrixai/table
Run nix develop, and once you're inside, you can use:
`sh`install (or reinstall packages from package.json)
npm installbuild the dist
npm run buildrun the repl (this allows you to import from ./src)
npm run tsxrun the tests
npm run testlint the source code
npm run lintautomatically fix the source
npm run lintfix
`sh`
npm run docs
See the docs at: https://matrixai.github.io/js-table/
Publishing is handled automatically by the staging pipeline.
Prerelease:
`sh`npm login
npm version prepatch --preid alpha # premajor/preminor/prepatch
git push --follow-tags
Release:
`sh`npm login
npm version patch # major/minor/patch
git push --follow-tags
Manually:
`sh``npm login
npm version patch # major/minor/patch
npm run build
npm publish --access public
git push
git push --tags