@deftai/directive 0.79.4 → 0.80.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/dist/hook-dispatch.js +5 -0
- package/package.json +3 -3
package/dist/hook-dispatch.js
CHANGED
|
@@ -103,6 +103,11 @@ export function run(argv, seams = {}) {
|
|
|
103
103
|
}
|
|
104
104
|
if (decision.code === "session-start-degraded")
|
|
105
105
|
writeErr(`${decision.message}\n`);
|
|
106
|
+
if (decision.code === "session-compact-rearm" ||
|
|
107
|
+
decision.code === "session-compact-rearm-degraded" ||
|
|
108
|
+
decision.code === "session-compact-noop") {
|
|
109
|
+
writeErr(`${decision.message}\n`);
|
|
110
|
+
}
|
|
106
111
|
return 0;
|
|
107
112
|
}
|
|
108
113
|
if (process.argv[1] !== undefined && fileURLToPath(import.meta.url) === process.argv[1]) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.80.0",
|
|
4
4
|
"description": "Directive CLI — npm install path for the Deft Directive framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"provenance": true
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@deftai/directive-core": "^0.
|
|
35
|
-
"@deftai/directive-content": "^0.
|
|
34
|
+
"@deftai/directive-core": "^0.80.0",
|
|
35
|
+
"@deftai/directive-content": "^0.80.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsc -b"
|