@0xsquid/squid-share
v0.1.135
Published
JS and TS share relating to 0xsquid related projects.
Readme
Squid Share
Squid Share
LINTER & PRETTIER
This project has Prettier and ESLint linter rules installed. With Husky we ensure pre-commit and pre-push validation.
yarn lintyarn lint:fixyarn formatVSCODE SETUP
Create a file .vscode/settings.json for auto-saving linter and prettier formatting.
Add the following:
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}RELEASE
NPM package publishing is automated with github actions. Follow these steps:
1. Create a PR to the develop branch
- Update
versioninsidepackage.json - Review, approve and merge.
2. Create a PR from develop to main
- Review, approve and merge
As the PR from (2.) is merged, the commit to main will automatically trigger a release to NPM, please make sure you correctly update the version.
