@corbat-tech/coco 2.24.0 → 2.24.1
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/README.md +21 -0
- package/dist/cli/index.js +5008 -4961
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1021,6 +1021,7 @@ var VALID_PROVIDERS;
|
|
|
1021
1021
|
var init_env = __esm({
|
|
1022
1022
|
"src/config/env.ts"() {
|
|
1023
1023
|
init_loader();
|
|
1024
|
+
init_paths();
|
|
1024
1025
|
loadGlobalCocoEnv();
|
|
1025
1026
|
VALID_PROVIDERS = [
|
|
1026
1027
|
"anthropic",
|
|
@@ -16480,6 +16481,9 @@ function generateId() {
|
|
|
16480
16481
|
return `proj_${Date.now().toString(36)}_${Math.random().toString(36).slice(2, 9)}`;
|
|
16481
16482
|
}
|
|
16482
16483
|
|
|
16484
|
+
// src/orchestrator/project.ts
|
|
16485
|
+
init_env();
|
|
16486
|
+
|
|
16483
16487
|
// src/config/index.ts
|
|
16484
16488
|
init_loader();
|
|
16485
16489
|
init_loader();
|