├── .gitignore ├── bin.js ├── bsconfig.json ├── changelog.md ├── docs └── macos.md ├── package.json ├── readme.md ├── rollup.config.js ├── screenshot.png ├── src ├── args.re ├── main.re ├── notifier.re └── update_notifier.re └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/.gitignore -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/bin.js -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/bsconfig.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/docs/macos.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/rollup.config.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/args.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/src/args.re -------------------------------------------------------------------------------- /src/main.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/src/main.re -------------------------------------------------------------------------------- /src/notifier.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/src/notifier.re -------------------------------------------------------------------------------- /src/update_notifier.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/src/update_notifier.re -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relekang/caretaker/HEAD/yarn.lock --------------------------------------------------------------------------------