From a20406b42761e6c14ad2c1d0c4b0a47b98fe7933 Mon Sep 17 00:00:00 2001 From: Adam Snodgrass Date: Fri, 28 Feb 2014 21:40:59 -0600 Subject: [PATCH] Updated README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 12cf2e5..76f7ecb 100644 --- a/README.md +++ b/README.md @@ -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() { });