├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── src ├── index.ts ├── producer.ts ├── types │ └── index.ts └── workers │ └── my-worker.ts ├── tests └── my-worker.test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/producer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/src/producer.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/workers/my-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/src/workers/my-worker.ts -------------------------------------------------------------------------------- /tests/my-worker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/tests/my-worker.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskforcesh/bullmq-typescript/HEAD/yarn.lock --------------------------------------------------------------------------------