@warlock.js/cache 5.3.2 → 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/cache` 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
@@ -123,7 +123,7 @@ Server-only: `package.json` declares `"warlock": { "environment": "server" }`. `
123
123
  ## Install
124
124
 
125
125
  ```bash
126
- yarn add @warlock.js/cache
126
+ npm install @warlock.js/cache
127
127
  ```
128
128
 
129
129
  ## Foundations
package/package.json CHANGED
@@ -5,9 +5,9 @@
5
5
  "environment": "server"
6
6
  },
7
7
  "dependencies": {
8
- "@warlock.js/fs": "5.3.2",
8
+ "@warlock.js/fs": "5.5.0",
9
9
  "@mongez/reinforcements": "^4.0.1",
10
- "@warlock.js/logger": "5.3.2",
10
+ "@warlock.js/logger": "5.5.0",
11
11
  "ms": "^2.1.3"
12
12
  },
13
13
  "peerDependencies": {
@@ -46,7 +46,7 @@
46
46
  ],
47
47
  "author": "hassanzohdy",
48
48
  "license": "MIT",
49
- "version": "5.3.2",
49
+ "version": "5.5.0",
50
50
  "main": "./cjs/index.cjs",
51
51
  "module": "./esm/index.mjs",
52
52
  "types": "./esm/index.d.mts",
@@ -14,7 +14,7 @@ Server-only: `package.json` declares `"warlock": { "environment": "server" }`. `
14
14
  ## Install
15
15
 
16
16
  ```bash
17
- pnpm add @warlock.js/cache
17
+ npm install @warlock.js/cache
18
18
  ```
19
19
 
20
20
  ## Foundations