├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── cleanup.js ├── index.d.ts ├── index.js ├── index.test-d.ts ├── init.js ├── lib └── update-notification.js ├── license ├── media ├── header.ai ├── header.svg ├── logo.ai ├── logo.png ├── logo.svg ├── screenshot-error.png ├── screenshot-output.png ├── screenshot-update.png └── screenshot.png ├── package.json ├── readme.md ├── run-node.sh └── test ├── _utils.js ├── cache.js ├── fetch.js ├── fixtures └── config │ └── user-config.json ├── log.js ├── test.js └── user-config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/cleanup.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/init.js -------------------------------------------------------------------------------- /lib/update-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/lib/update-notification.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/license -------------------------------------------------------------------------------- /media/header.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/header.ai -------------------------------------------------------------------------------- /media/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/header.svg -------------------------------------------------------------------------------- /media/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/logo.ai -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/screenshot-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/screenshot-error.png -------------------------------------------------------------------------------- /media/screenshot-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/screenshot-output.png -------------------------------------------------------------------------------- /media/screenshot-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/screenshot-update.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/readme.md -------------------------------------------------------------------------------- /run-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/run-node.sh -------------------------------------------------------------------------------- /test/_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/_utils.js -------------------------------------------------------------------------------- /test/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/cache.js -------------------------------------------------------------------------------- /test/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/fetch.js -------------------------------------------------------------------------------- /test/fixtures/config/user-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/fixtures/config/user-config.json -------------------------------------------------------------------------------- /test/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/log.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/test.js -------------------------------------------------------------------------------- /test/user-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/alfy/HEAD/test/user-config.js --------------------------------------------------------------------------------