@fractary/codex 0.12.14 → 0.12.17

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/index.cjs CHANGED
@@ -3669,10 +3669,11 @@ var SYNC_PATTERN_PRESETS = {
3669
3669
  config: {
3670
3670
  to_codex: {
3671
3671
  include: ["docs/**", "README.md", "CLAUDE.md"],
3672
- exclude: ["*.tmp"]
3672
+ exclude: ["*.tmp", "_archive/**"]
3673
3673
  },
3674
3674
  from_codex: {
3675
- include: ["codex://{org}/{codex_repo}/docs/**"]
3675
+ include: ["codex://{org}/{codex_repo}/docs/**"],
3676
+ exclude: ["_archive/**"]
3676
3677
  }
3677
3678
  }
3678
3679
  },
@@ -3912,7 +3913,7 @@ ${relativeCachePath}
3912
3913
  }
3913
3914
  async function installMcpServer(projectRoot, configPath = ".fractary/config.yaml", options = {}) {
3914
3915
  const mcpJsonPath = path3__namespace.join(projectRoot, ".mcp.json");
3915
- const { backup = true } = options;
3916
+ const { backup = false } = options;
3916
3917
  let existingConfig = { mcpServers: {} };
3917
3918
  let backupPath;
3918
3919
  let migrated = false;