Skip to content

Commit 79a192d

Browse files
Documented PR #24
1 parent c579403 commit 79a192d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Options:
7070
-u, --exclude <filespec> File path or glob pattern to exclude.
7171
Don't forget to put quotes around glob patterns
7272
73-
-s, --standalone <name> Export as a named UMD bundle
74-
For example: my.cool.module
73+
-s, --standalone <name> Export as a named UMD bundle (e.g. "my.cool.module")
74+
May include a wildcard (e.g. "MyLib.*")
7575
7676
Arguments:
7777

bin/simplifyify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function parseArguments () {
2222
.option('-w, --watch', 'Watch source file(s) and rebuild the bundle(s) automatically')
2323
.option('-o, --outfile <filespec>', 'The output file or directory. May include a filename pattern (e.g. "*.bundle.js")')
2424
.option('-u, --exclude <filespec>', 'File path or glob pattern to exclude')
25-
.option('-s, --standalone <name>', 'Export as a named UMD bundle')
25+
.option('-s, --standalone <name>', 'Export as a named UMD bundle (e.g. "my.cool.bundle"). May include a wildcard (e.g. "MyLib.*")')
2626
.on('--help', () => {
2727
console.log(
2828
' Arguments:\n' +

0 commit comments

Comments
 (0)