From e4941abbee3685ef7ab9ced301ca6b007c168d6e Mon Sep 17 00:00:00 2001 From: Xeyler Date: Tue, 21 May 2024 19:50:16 -0600 Subject: [PATCH] Remove deprecated command line args from --help `--ejs`, `--pug`, `--hbs`, and `--hogan` have been deprecated in favor of `--view=` and should therefore be removed from the help output. --- bin/express-cli.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/express-cli.js b/bin/express-cli.js index 380a447d..96996015 100755 --- a/bin/express-cli.js +++ b/bin/express-cli.js @@ -513,10 +513,6 @@ function usage () { console.log('') console.log(' Options:') console.log('') - console.log(' -e, --ejs add ejs engine support') - console.log(' --pug add pug engine support') - console.log(' --hbs add handlebars engine support') - console.log(' -H, --hogan add hogan.js engine support') console.log(' -v, --view add view support (dust|ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)') console.log(' --no-view use static html instead of view engine') console.log(' -c, --css add stylesheet support (less|stylus|compass|sass) (defaults to plain css)')