@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.js
CHANGED
|
@@ -1928,7 +1928,10 @@ function syncCommand() {
|
|
|
1928
1928
|
config.organization,
|
|
1929
1929
|
projectName,
|
|
1930
1930
|
codexRepoPath,
|
|
1931
|
-
|
|
1931
|
+
{
|
|
1932
|
+
...syncOptions,
|
|
1933
|
+
codexRepo: "codex_repo" in config ? config.codex_repo : void 0
|
|
1934
|
+
}
|
|
1932
1935
|
);
|
|
1933
1936
|
plan = planWithRouting;
|
|
1934
1937
|
routingScan = planWithRouting.routingScan;
|
|
@@ -1958,7 +1961,7 @@ function syncCommand() {
|
|
|
1958
1961
|
syncOptions
|
|
1959
1962
|
);
|
|
1960
1963
|
plan.source = sourceDir;
|
|
1961
|
-
plan.target = path5.join(codexRepoPath,
|
|
1964
|
+
plan.target = path5.join(codexRepoPath, "projects", projectName);
|
|
1962
1965
|
}
|
|
1963
1966
|
if (plan.totalFiles === 0) {
|
|
1964
1967
|
if (options.json) {
|