Skip to content

chore(help): remove ng help false errors #4001

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
6 changes: 5 additions & 1 deletion packages/angular-cli/commands/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ const stringUtils = require('ember-cli-string-utils');
const lookupCommand = require('../ember-cli/lib/cli/lookup-command');

const commandsToIgnore = [
'build.run',
'easter-egg',
'destroy',
'github-pages-deploy' // errors because there is no base github-pages command
'github-pages-deploy', // errors because there is no base github-pages command
'github-pages-deploy.run',
'init.run',
'serve.run'
];

const HelpCommand = Command.extend({
Expand Down