Updated README.md

This commit is contained in:
Adam Snodgrass
2014-02-28 21:40:59 -06:00
parent 666774b5b5
commit 518fbc7280
+3 -3
View File
@@ -15,7 +15,7 @@ Nexe is a command-line utility that compiles your Node.js application into a sin
## Requirements
- Linux / Mac
- Linux / Mac / BSD
## Caveats
@@ -47,7 +47,7 @@ Options:
-o, --output The output binary [default: cwd/release/app.nex]
-r, --runtime The node.js runtime to use [default: "0.8.15"]
-t, --temp The path to store node.js sources [default: /tmp/nexe]
-f, --flags Don't parse node and v8 flags, pass through app flags [default: false]
````
@@ -58,7 +58,7 @@ Options:
var nexe = require('nexe');
nexe.compile({ input: 'input.js', output: 'path/to/bin', runtime: '0.8.15' } function() {
nexe.compile({ input: 'input.js', output: 'path/to/bin', runtime: '0.8.15', flags: true } function() {
});