@optiqcode/cli 1.1.0 → 1.2.0
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/commands/index.js +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/commands/index.js
CHANGED
|
@@ -73,7 +73,7 @@ export async function index(options) {
|
|
|
73
73
|
Authorization: `Bearer ${config.apiKey}`,
|
|
74
74
|
'Content-Type': 'application/json',
|
|
75
75
|
},
|
|
76
|
-
timeout:
|
|
76
|
+
timeout: 0, // No timeout for large codebases
|
|
77
77
|
});
|
|
78
78
|
if (response.data.success) {
|
|
79
79
|
spinner.succeed(chalk.green('✓ Indexing complete'));
|
package/dist/index.js
CHANGED
|
@@ -194,7 +194,7 @@ async function indexOnce(targetPath, config) {
|
|
|
194
194
|
'X-API-Key': config.apiKey,
|
|
195
195
|
'Content-Type': 'application/json',
|
|
196
196
|
},
|
|
197
|
-
timeout:
|
|
197
|
+
timeout: 0, // No timeout for large codebases
|
|
198
198
|
});
|
|
199
199
|
if (response.data.success) {
|
|
200
200
|
spinner.succeed(chalk.white('✓ Indexing complete'));
|
|
@@ -274,7 +274,7 @@ async function watchDirectory(targetPath, config) {
|
|
|
274
274
|
'X-API-Key': config.apiKey,
|
|
275
275
|
'Content-Type': 'application/json',
|
|
276
276
|
},
|
|
277
|
-
timeout:
|
|
277
|
+
timeout: 0, // No timeout for large codebases
|
|
278
278
|
});
|
|
279
279
|
if (response.data.success) {
|
|
280
280
|
repoId = response.data.repo_id;
|