Skip to content
This repository has been archived by the owner on May 24, 2019. It is now read-only.

Fix help options ensuring the --all argument is printed #46

Merged
merged 1 commit into from
Oct 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flow-node
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var usage = 'Usage: flow-node [options] [ script.js ] [arguments] \n' +
' -v, --version Prints the current version of flow-node\n' +
' -e, --eval script Evaluate script\n' +
' -p, --print script Evaluate script and print result\n' +
' -c, --check Syntax check script without executing\n';
' -c, --check Syntax check script without executing\n' +
' -a, --all Interpret all files as flow-typed, not just those with a @flow comment\n';

// Collect arguments
Expand Down