We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 316b153 commit ca5b72aCopy full SHA for ca5b72a
1 file changed
src/commands/commandreference/generate.ts
@@ -78,7 +78,7 @@ export default class CommandReferenceGenerate extends SfCommand<CommandReference
78
79
let pluginNames: string[];
80
if (!flags.plugins && !flags.all) {
81
- pluginNames = this.loadedConfig.plugins.map((p) => p.name);
+ pluginNames = this.loadedConfig.plugins.filter((p) => p.type !== 'dev').map((p) => p.name);
82
} else if (flags.all) {
83
const ignore = [
84
/@oclif/,
0 commit comments