@ghl-ai/aw 0.1.60 → 0.1.61
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/ecc.mjs +1 -1
- package/integrate.mjs +7 -0
- package/package.json +1 -1
package/ecc.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import { applyStoredStartupPreferences } from "./startup.mjs";
|
|
|
12
12
|
|
|
13
13
|
const AW_ECC_REPO_SSH = "git@github.com:shreyansh-ghl/aw-ecc.git";
|
|
14
14
|
const AW_ECC_REPO_HTTPS = "https://github.com/shreyansh-ghl/aw-ecc.git";
|
|
15
|
-
export const AW_ECC_TAG = "v1.4.
|
|
15
|
+
export const AW_ECC_TAG = "v1.4.64";
|
|
16
16
|
const REQUIRED_ECC_FILES = [
|
|
17
17
|
"package.json",
|
|
18
18
|
"scripts/install-apply.js",
|
package/integrate.mjs
CHANGED
|
@@ -649,6 +649,9 @@ No active runs. Use \`/aw:<team>-<command>\` to start a workflow.
|
|
|
649
649
|
// config.json — registry paths, sync settings
|
|
650
650
|
const configPath = join(awDocsDir, 'config.json');
|
|
651
651
|
const defaultConfig = {
|
|
652
|
+
docs: {
|
|
653
|
+
outputMode: 'dual',
|
|
654
|
+
},
|
|
652
655
|
sync: {
|
|
653
656
|
eager: true,
|
|
654
657
|
batch_threshold: 10,
|
|
@@ -668,6 +671,10 @@ No active runs. Use \`/aw:<team>-<command>\` to start a workflow.
|
|
|
668
671
|
const existing = JSON.parse(readFileSync(configPath, 'utf8'));
|
|
669
672
|
nextConfig = {
|
|
670
673
|
...existing,
|
|
674
|
+
docs: {
|
|
675
|
+
...defaultConfig.docs,
|
|
676
|
+
...(existing.docs || {}),
|
|
677
|
+
},
|
|
671
678
|
sync: {
|
|
672
679
|
...defaultConfig.sync,
|
|
673
680
|
...(existing.sync || {}),
|