@relipa/ai-flow-kit 0.1.5-beta.0 → 0.1.5

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/scripts/update.js CHANGED
@@ -2,6 +2,7 @@ const fs = require('fs-extra');
2
2
  const path = require('path');
3
3
  const chalk = require('chalk');
4
4
  const { confirm, select } = require('@inquirer/prompts');
5
+ const { syncDocsRepos } = require('./docs-repo');
5
6
 
6
7
  const PKG_DIR = path.join(__dirname, '..');
7
8
  const PKG_VERSION = require('../package.json').version;
@@ -25,6 +26,9 @@ module.exports = async function update(options = {}) {
25
26
  return;
26
27
  }
27
28
 
29
+ // ── Sync AK-Docs / Shared-Docs sibling repos ──────────────────
30
+ await syncDocsRepos(projectDir);
31
+
28
32
  const state = await fs.readJson(stateFile);
29
33
  const currentVersion = state.current_version;
30
34
 
package/scripts/use.js CHANGED
File without changes