@prismakit/cli 4.0.1 → 4.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismakit/cli",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "CLI for PrismaKit — generate modules, validate compose, install agent skills",
5
5
  "license": "Apache-2.0",
6
6
  "engines": {
@@ -29,10 +29,10 @@
29
29
  "README.md"
30
30
  ],
31
31
  "dependencies": {
32
- "@prismakit/core": "4.0.1"
32
+ "@prismakit/core": "4.0.2"
33
33
  },
34
34
  "peerDependencies": {
35
- "@prismakit/core": ">=4.0.1 <5"
35
+ "@prismakit/core": ">=4.0.2 <5"
36
36
  },
37
37
  "devDependencies": {
38
38
  "typescript": "^5.9.2",
@@ -122,6 +122,7 @@ await repo.invalidateCache({ id?: string; tags?: string[] });
122
122
  | `defaultSetCache` | `false` | Reads cache unless caller passes `setCache: false`. |
123
123
  | `stampede` | see below | Per-repo stampede overrides. |
124
124
  | `strictInvalidation` | `false` | When true, invalidation failures rethrow. |
125
+ | `writeGateTtlSeconds` | `5` | Block cache SET after invalidate (stale in-flight GET race). `false` / `0` disables. |
125
126
 
126
127
  ### `InvalidateMode`
127
128