@warlock.js/scheduler 5.4.0 → 5.5.0

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to `@warlock.js/scheduler` are documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). `@warlock.js/*` packages are released in lockstep — every package shares the same version number, so a version below may list only the changes that affected this package.
6
6
 
7
+ ## 5.5.0 - 2026-09-07
8
+
9
+ ### Fixed
10
+
11
+ - Documentation shipped in this package's `skills/` told users to run `pnpm`-specific commands. `pnpm <binary>` has no npm equivalent, so those instructions failed outright for anyone not using pnpm. Commands are now package-manager neutral.
12
+
7
13
  ## 5.2.3 - 2026-09-02
8
14
 
9
15
  ### Fixed
package/llms-full.txt CHANGED
@@ -817,7 +817,7 @@ A `Job` carries the schedule (interval or cron), retry config, overlap rule, tim
817
817
  ## Install
818
818
 
819
819
  ```bash
820
- yarn add @warlock.js/scheduler
820
+ npm install @warlock.js/scheduler
821
821
  ```
822
822
 
823
823
  ## Foundations
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "author": "hassanzohdy",
27
27
  "license": "MIT",
28
- "version": "5.4.0",
28
+ "version": "5.5.0",
29
29
  "main": "./cjs/index.cjs",
30
30
  "module": "./esm/index.mjs",
31
31
  "types": "./esm/index.d.mts",
@@ -21,7 +21,7 @@ A `Job` carries the schedule (interval or cron), retry config, overlap rule, tim
21
21
  ## Install
22
22
 
23
23
  ```bash
24
- pnpm add @warlock.js/scheduler
24
+ npm install @warlock.js/scheduler
25
25
  ```
26
26
 
27
27
  ## Foundations