Skip to content

Commit be7f4d0

Browse files
wip. checking test for nextjs-ts add logs
1 parent f7d7201 commit be7f4d0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/devextreme-cli/src/utility/run-command.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ module.exports = function(commandName, args = [], customConfig = {}) {
2121

2222
const promise = new Promise((resolve, reject) => {
2323
if(!config.noExit) {
24+
proc.stdout.on('data', (data) => {
25+
const output = data.toString();
26+
console.log('SERVER STARTED!\n', output);
27+
});
28+
2429
proc.on('exit', (code) => {
2530
console.log('----runCommand exit------>', code);
2631
code ? reject(code) : resolve();

0 commit comments

Comments
 (0)