├── .github └── workflows │ ├── node.yml │ └── test.yml ├── .gitignore ├── .releaserc.json ├── LICENSE ├── README.md ├── cli.ts ├── package.json ├── tsconfig.json └── update.ts /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/.releaserc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/README.md -------------------------------------------------------------------------------- /cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/cli.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnandChowdhary/update-template/HEAD/update.ts --------------------------------------------------------------------------------