style: added a description for watch mode (#11589)

This commit is contained in:
Vincent 2021-11-22 15:24:54 +01:00 committed by GitHub
parent 775bb9a576
commit f23945be3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,7 +156,9 @@ module.exports = async function createProject(scope, { client, connection, depen
console.log('Available commands in your project:'); console.log('Available commands in your project:');
console.log(); console.log();
console.log(` ${cmd} develop`); console.log(` ${cmd} develop`);
console.log(' Start Strapi in watch mode.'); console.log(
' Start Strapi in watch mode. (Changes in Strapi project files will trigger a server restart)'
);
console.log(); console.log();
console.log(` ${cmd} start`); console.log(` ${cmd} start`);
console.log(' Start Strapi without watch mode.'); console.log(' Start Strapi without watch mode.');