kspec 1.0.11 → 1.0.12
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/package.json +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -102,7 +102,7 @@ async function confirm(question) {
|
|
|
102
102
|
function chat(message, agent) {
|
|
103
103
|
const cli = requireCli();
|
|
104
104
|
const args = agent ? ['chat', '--agent', agent, message] : ['chat', message];
|
|
105
|
-
const child = spawn(cli, args, { stdio: 'inherit'
|
|
105
|
+
const child = spawn(cli, args, { stdio: 'inherit' });
|
|
106
106
|
return new Promise(resolve => child.on('close', resolve));
|
|
107
107
|
}
|
|
108
108
|
|