├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── README.md ├── example ├── .editorconfig ├── .exampleCLI │ └── config.json ├── .gitignore ├── README.md ├── bin │ ├── run │ └── run.cmd ├── package.json ├── src │ ├── base.ts │ ├── commands │ │ └── hello │ │ │ └── get.ts │ └── index.ts ├── tsconfig.json └── yarn.lock ├── example2 ├── .editorconfig ├── .gitignore ├── README.md ├── bin │ ├── run │ └── run.cmd ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── src └── index.ts ├── temp.js ├── test └── blah.test.ts ├── tsconfig.json ├── types └── frecency │ └── index.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/README.md -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/.editorconfig -------------------------------------------------------------------------------- /example/.exampleCLI/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "potato" 3 | } 4 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/README.md -------------------------------------------------------------------------------- /example/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/bin/run -------------------------------------------------------------------------------- /example/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/src/base.ts -------------------------------------------------------------------------------- /example/src/commands/hello/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/src/commands/hello/get.ts -------------------------------------------------------------------------------- /example/src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command'; 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /example2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/.editorconfig -------------------------------------------------------------------------------- /example2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/.gitignore -------------------------------------------------------------------------------- /example2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/README.md -------------------------------------------------------------------------------- /example2/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/bin/run -------------------------------------------------------------------------------- /example2/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /example2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/package.json -------------------------------------------------------------------------------- /example2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/src/index.ts -------------------------------------------------------------------------------- /example2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/tsconfig.json -------------------------------------------------------------------------------- /example2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/example2/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/src/index.ts -------------------------------------------------------------------------------- /temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/temp.js -------------------------------------------------------------------------------- /test/blah.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/test/blah.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/frecency/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/types/frecency/index.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/cli-state/HEAD/yarn.lock --------------------------------------------------------------------------------