@warlock.js/context 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/context` 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
@@ -18,7 +18,7 @@ description: 'Extend Context<TStore> to define an AsyncLocalStorage-backed typed
18
18
  ## Install
19
19
 
20
20
  ```bash
21
- yarn add @warlock.js/context
21
+ npm install @warlock.js/context
22
22
  ```
23
23
 
24
24
  ## Shape
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "engines": {
25
25
  "node": ">=18.0.0"
26
26
  },
27
- "version": "5.4.0",
27
+ "version": "5.5.0",
28
28
  "main": "./cjs/index.cjs",
29
29
  "module": "./esm/index.mjs",
30
30
  "types": "./esm/index.d.mts",
@@ -10,7 +10,7 @@ description: 'Extend Context<TStore> to define an AsyncLocalStorage-backed typed
10
10
  ## Install
11
11
 
12
12
  ```bash
13
- pnpm add @warlock.js/context
13
+ npm install @warlock.js/context
14
14
  ```
15
15
 
16
16
  ## Shape