Skip to content

Commit

Permalink
Add more examples useage for the output flag
Browse files Browse the repository at this point in the history
As it wasn't mentioning the html output before
  • Loading branch information
razzeee committed Jul 10, 2019
1 parent 373c1d1 commit fc33654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminal/src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ make =
flags Make.Flags
|-- onOff "debug" "Turn on the time-travelling debugger. It allows you to rewind and replay events. The events can be imported/exported into a file, which makes for very precise bug reports!"
|-- onOff "optimize" "Turn on optimizations to make code smaller and faster. For example, the compiler renames record fields to be as short as possible and unboxes values to reduce allocation."
|-- flag "output" Make.output "Specify the name of the resulting JS file. For example --output=assets/elm.js to generate the JS at assets/elm.js or --output=/dev/null to generate no output at all!"
|-- flag "output" Make.output "Specify the name of the resulting JS or Html file. For example --output=assets/elm.js to generate the JS at assets/elm.js, --output=assets/index.html to generate a Html file or --output=/dev/null to generate no output at all!"
|-- flag "report" Make.reportType "You can say --report=json to get error messages as JSON. This is only really useful if you are an editor plugin. Humans should avoid it!"
|-- flag "docs" Make.docsFile "Generate a JSON file of documentation for a package. Eventually it will be possible to preview docs with `reactor` because it is quite hard to deal with these JSON files directly."
in
Expand Down

0 comments on commit fc33654

Please sign in to comment.