From 6fe3179bdadd1c2b6e5b9b5c5795120f833cb3e6 Mon Sep 17 00:00:00 2001 From: JSKitty Date: Sat, 8 Oct 2022 02:21:17 +0100 Subject: [PATCH 1/2] fix cli launching typo this commit fixes a typo in the cli for 'launching' --- lib/binaries/CLI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binaries/CLI.js b/lib/binaries/CLI.js index 00209a90..0913cf5c 100644 --- a/lib/binaries/CLI.js +++ b/lib/binaries/CLI.js @@ -881,7 +881,7 @@ commander.command('logs [id|name|namespace]') .option('--out', 'only shows standard output') .option('--lines ', 'output the last N lines, instead of the last 15 by default') .option('--timestamp [format]', 'add timestamps (default format YYYY-MM-DD-HH:mm:ss)') - .option('--nostream', 'print logs without lauching the log stream') + .option('--nostream', 'print logs without launching the log stream') .option('--highlight [value]', 'highlights the given value') .description('stream logs file. Default stream all logs') .action(function(id, cmd) { From 0e2b65e0ffe17220bee029910ba99569b2993bc1 Mon Sep 17 00:00:00 2001 From: JSKitty Date: Sat, 8 Oct 2022 02:51:47 +0100 Subject: [PATCH 2/2] fix other launch typos this commit fixes two more typos for 'launch' --- examples/sourcemap-auto-resolve/API.js | 2 +- lib/API.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sourcemap-auto-resolve/API.js b/examples/sourcemap-auto-resolve/API.js index adf4e68e..99ed0592 100644 --- a/examples/sourcemap-auto-resolve/API.js +++ b/examples/sourcemap-auto-resolve/API.js @@ -150,7 +150,7 @@ API.prototype.connect = function(noDaemon, cb) { return cb(err, meta); // If new pm2 instance has been popped - // Lauch all modules + // Launch all modules Modularizer.launchAll(that, function(err_mod) { return cb(err, meta); }); diff --git a/lib/API.js b/lib/API.js index e72d72a5..945c822d 100644 --- a/lib/API.js +++ b/lib/API.js @@ -182,7 +182,7 @@ class API { that.launchSysMonitoring(() => {}) // If new pm2 instance has been popped - // Lauch all modules + // Launch all modules that.launchAll(that, function(err_mod) { return cb(err, meta); });