opencode-ultra 0.7.3 → 0.7.4
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14541,7 +14541,7 @@ function detectConfigFile(basePath) {
|
|
|
14541
14541
|
return null;
|
|
14542
14542
|
}
|
|
14543
14543
|
function loadConfig(projectDir) {
|
|
14544
|
-
const userPath = detectConfigFile(path.join(getConfigDir(), "
|
|
14544
|
+
const userPath = detectConfigFile(path.join(getConfigDir(), "opencode-ultra"));
|
|
14545
14545
|
let config2 = {};
|
|
14546
14546
|
if (userPath) {
|
|
14547
14547
|
try {
|
|
@@ -14552,7 +14552,7 @@ function loadConfig(projectDir) {
|
|
|
14552
14552
|
log(`Error loading user config: ${err}`);
|
|
14553
14553
|
}
|
|
14554
14554
|
}
|
|
14555
|
-
const projectPath = detectConfigFile(path.join(projectDir, ".opencode", "
|
|
14555
|
+
const projectPath = detectConfigFile(path.join(projectDir, ".opencode", "opencode-ultra"));
|
|
14556
14556
|
if (projectPath) {
|
|
14557
14557
|
try {
|
|
14558
14558
|
const content = fs.readFileSync(projectPath, "utf-8");
|