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

Commit aacd52b

Browse files
committed
fix(app): remove invalid parameter in app-suffix option config
option() method doesn't accept a 'required' config parameter.
1 parent b241982 commit aacd52b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/index.js

+1-2
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);

0 commit comments

Comments
 (0)