From a37654aa42526e2bc74458352abde55f45c1372e Mon Sep 17 00:00:00 2001 From: Massimo Galbusera Date: Thu, 16 Sep 2021 16:54:11 +0200 Subject: [PATCH] feat (commands): remember user to call generate:manifest --- templates/command.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/command.txt b/templates/command.txt index 35e37b26..5f55abf5 100644 --- a/templates/command.txt +++ b/templates/command.txt @@ -15,13 +15,15 @@ export default class {{ filename }} extends BaseCommand { public static settings = { /** * Set the following value to true, if you want to load the application - * before running the command + * before running the command. Don't forget to call `node ace generate:manifest` + * afterwards. */ loadApp: false, /** * Set the following value to true, if you want this command to keep running until - * you manually decide to exit the process + * you manually decide to exit the process. Don't forget to call + * `node ace generate:manifest` afterwards. */ stayAlive: false, }