├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .husky └── _ │ └── husky.sh ├── .npmignore ├── CHANGELOG.md ├── README.md ├── bin ├── index.js └── template │ ├── package.json │ └── template.js ├── jest.config.js ├── lib ├── alfred-cli-check.ts ├── alfred-cli-download.ts ├── date-utils.ts ├── environment.d.ts ├── http.ts ├── index.ts ├── interface.ts ├── utils.ts ├── workflow-updater.ts └── workflow.ts ├── package.json ├── test ├── .cache │ └── .gitkeeper ├── alfred-environment-variable.json ├── date-utils.test.ts ├── http.test.ts ├── utils.test.ts ├── workflow-updater.test.ts └── workflow.test.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/_/husky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/.husky/_/husky.sh -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/bin/index.js -------------------------------------------------------------------------------- /bin/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/bin/template/package.json -------------------------------------------------------------------------------- /bin/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/bin/template/template.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/alfred-cli-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/alfred-cli-check.ts -------------------------------------------------------------------------------- /lib/alfred-cli-download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/alfred-cli-download.ts -------------------------------------------------------------------------------- /lib/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/date-utils.ts -------------------------------------------------------------------------------- /lib/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/environment.d.ts -------------------------------------------------------------------------------- /lib/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/http.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/interface.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/workflow-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/workflow-updater.ts -------------------------------------------------------------------------------- /lib/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/lib/workflow.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/package.json -------------------------------------------------------------------------------- /test/.cache/.gitkeeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/alfred-environment-variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/alfred-environment-variable.json -------------------------------------------------------------------------------- /test/date-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/date-utils.test.ts -------------------------------------------------------------------------------- /test/http.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/http.test.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /test/workflow-updater.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/workflow-updater.test.ts -------------------------------------------------------------------------------- /test/workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/test/workflow.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhe421/alfred-utils/HEAD/tsconfig.json --------------------------------------------------------------------------------