Skip to content

Commit bd4f73a

Browse files
committed
Optional values are now actually optional
1 parent 76ff7d0 commit bd4f73a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

command.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ ${emoji.get('arrow_right')} To get started type \`cd ./${name}\``);
3838
});
3939
},
4040
options: [{
41-
command: '--prefix <prefix>',
41+
command: '--prefix [prefix]',
4242
description: 'The prefix for the library (Default: `RN`)',
4343
default: 'RN',
4444
}, {
4545
command: '--override-prefix',
4646
description: 'Overrides the prefix check and allows the name to begin with uppercase characters',
4747
}, {
48-
command: '--module-prefix <modulePrefix>',
48+
command: '--module-prefix [modulePrefix]',
4949
description: 'The module prefix for the library (Default: `react-native`)',
5050
default: 'react-native',
5151
}, {
52-
command: '--package-identifier <packageIdentifier>',
52+
command: '--package-identifier [packageIdentifier]',
5353
description: '(Android only!) The package name for the Android module (Default: `com.reactlibrary`)',
5454
default: 'com.reactlibrary',
5555
}, {
56-
command: '--namespace <namespace>',
56+
command: '--namespace [namespace]',
5757
description: '(Windows only!) The namespace for the Windows module\n' +
58-
' (Default: The name as PascalCase)',
58+
' (Default: The name as PascalCase)'
5959
}, {
6060
command: '--platforms <platforms>',
6161
description: 'Platforms the library will be created for. (comma separated; default: `ios,android,windows`)',

0 commit comments

Comments
 (0)