diff --git a/utils/checkForNewVersion.js b/utils/checkForNewVersion.js index bb4f84f..34d2857 100644 --- a/utils/checkForNewVersion.js +++ b/utils/checkForNewVersion.js @@ -12,5 +12,7 @@ const pkg = require("../package.json"); */ export default async function checkForNewVersion() { const notifier = updateNotifier({ pkg }); - notifier.notify(); + const updateCommand = "npm i -g reaction-cli"; + const updateMessage = `Run ${updateCommand} to update.`; + notifier.notify({ message: updateMessage }); }