├── .codeclimate.yml ├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── coverage.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── test └── unit └── index.spec.js /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/src/index.js -------------------------------------------------------------------------------- /test/unit/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxChanLu/moleculer-bullmq/HEAD/test/unit/index.spec.js --------------------------------------------------------------------------------