@fractary/codex-cli 0.10.9 → 0.10.11
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/cli.cjs +5 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +5 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -1961,7 +1961,10 @@ function syncCommand() {
|
|
|
1961
1961
|
config.organization,
|
|
1962
1962
|
projectName,
|
|
1963
1963
|
codexRepoPath,
|
|
1964
|
-
|
|
1964
|
+
{
|
|
1965
|
+
...syncOptions,
|
|
1966
|
+
codexRepo: "codex_repo" in config ? config.codex_repo : void 0
|
|
1967
|
+
}
|
|
1965
1968
|
);
|
|
1966
1969
|
plan = planWithRouting;
|
|
1967
1970
|
routingScan = planWithRouting.routingScan;
|
|
@@ -1991,7 +1994,7 @@ function syncCommand() {
|
|
|
1991
1994
|
syncOptions
|
|
1992
1995
|
);
|
|
1993
1996
|
plan.source = sourceDir;
|
|
1994
|
-
plan.target = path4__namespace.join(codexRepoPath,
|
|
1997
|
+
plan.target = path4__namespace.join(codexRepoPath, "projects", projectName);
|
|
1995
1998
|
}
|
|
1996
1999
|
if (plan.totalFiles === 0) {
|
|
1997
2000
|
if (options.json) {
|