├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── commands │ └── hello.ts ├── index.ts └── utils │ └── index.ts ├── tests ├── .eslintrc ├── commands │ ├── __snapshots__ │ │ └── hello.test.ts.snap │ └── hello.test.ts └── utils │ └── index.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/src/commands/hello.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/commands/__snapshots__/hello.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/tests/commands/__snapshots__/hello.test.ts.snap -------------------------------------------------------------------------------- /tests/commands/hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/tests/commands/hello.test.ts -------------------------------------------------------------------------------- /tests/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/tests/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabro/cli-typescript-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------