@open-mercato/queue 0.4.11-develop.1909.991fce6e6a → 0.4.11-develop.1912.71c0c0adcd

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/AGENTS.md +1 -1
  2. package/package.json +1 -1
package/AGENTS.md CHANGED
@@ -30,7 +30,7 @@ Use `@open-mercato/queue` for all background job processing. MUST NOT implement
30
30
  2. Export `metadata` with `{ queue: '<queue-name>', id: '<worker-id>', concurrency: <n> }`
31
31
  3. Export default async handler function
32
32
  4. Ensure handler is idempotent — check state before mutating
33
- 5. Run `npm run modules:prepare` to register the worker
33
+ 5. Run `yarn generate` to register the worker
34
34
  6. Test with `QUEUE_STRATEGY=local` in development
35
35
 
36
36
  ### Worker Contract
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-mercato/queue",
3
- "version": "0.4.11-develop.1909.991fce6e6a",
3
+ "version": "0.4.11-develop.1912.71c0c0adcd",
4
4
  "description": "Multi-strategy job queue with local and BullMQ support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",