fix(app): remove invalid parameter in app-suffix option config · yeoman/generator-angular@aacd52b

This repository was archived by the owner on Mar 26, 2018. It is now read-only.

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -16,8 +16,7 @@ var Generator = module.exports = function Generator(args, options) {

1616
1717

this.option('app-suffix', {

1818

desc: 'Allow a custom suffix to be added to the module name',

19-

type: String,

20-

required: 'false'

19+

type: String

2120

});

2221

this.env.options['app-suffix'] = this.options['app-suffix'];

2322

this.scriptAppName = this.appname + angularUtils.appName(this);