chore: reporting

This commit is contained in:
cha0s 2021-03-25 02:43:16 -05:00
parent fc0287e050
commit 147c42fc4a

View File

@ -43,7 +43,10 @@ export default {
shell: true,
stdio: 'inherit',
};
spawn(`${binary} --hot --inline --mode development --config ${config}`, options);
const invocation = `${binary} --mode development --hot --config ${config}`;
// eslint-disable-next-line no-console
console.log(`@latus/http: ${invocation}`);
spawn(invocation, options);
}
return undefined;
},