@sp-editor/native-bridge 1.0.5 → 1.0.6
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/bin/sp-editor-bridge.js +2 -2
- package/dist/copilot.js +1 -1
- package/package.json +1 -1
package/bin/sp-editor-bridge.js
CHANGED
|
@@ -52,7 +52,7 @@ switch (cmd) {
|
|
|
52
52
|
console.log(' sp-editor-bridge status Show installation status')
|
|
53
53
|
console.log('')
|
|
54
54
|
console.log('Prerequisites:')
|
|
55
|
-
console.log('
|
|
56
|
-
console.log('
|
|
55
|
+
console.log(' npm install -g @github/copilot Install the Copilot CLI')
|
|
56
|
+
console.log(' copilot login Authenticate with GitHub')
|
|
57
57
|
break
|
|
58
58
|
}
|
package/dist/copilot.js
CHANGED
|
@@ -46,7 +46,7 @@ const path_1 = __importDefault(require("path"));
|
|
|
46
46
|
const protocol_1 = require("./protocol");
|
|
47
47
|
/** Timeout for a single copilot call (ms). */
|
|
48
48
|
const COPILOT_TIMEOUT_MS = 180000; // 3 minutes — first messages with large system prompts can take longer
|
|
49
|
-
/** Timeout for fast health-check spawns (copilot --version,
|
|
49
|
+
/** Timeout for fast health-check spawns (copilot --version, copilot login). */
|
|
50
50
|
const CHECK_TIMEOUT_MS = 5000;
|
|
51
51
|
// ANSI escape code pattern
|
|
52
52
|
const ANSI_PATTERN = /\x1B\[[0-9;]*[A-Za-z]|\x1B\][^\x07]*\x07|\x1B[()][AB0-9]/g;
|