From e4155c8fedc78e8ef929f97a1869b5e893ba83fc Mon Sep 17 00:00:00 2001 From: RainbowDashDC Date: Sat, 14 Feb 2015 09:44:49 -0800 Subject: [PATCH] Version bump 0.3.5, update depends --- .gitignore | 3 ++- README.md | 12 ++++++------ package.json | 27 +++++++++++++-------------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.gitignore b/.gitignore index 385a45e..1c0b1c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules .DS_Store -*.nex \ No newline at end of file +*.nex +npm-debug.log \ No newline at end of file diff --git a/README.md b/README.md index 730c777..d353ac4 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Via NPM: Or git: ```bash - git clone + git clone https://github.com/crcn/nexe.git ``` ### CLI Usage @@ -111,11 +111,11 @@ Or git: Usage: nexe -i [sources] -o [binary] [options] Options: - -i, --input The entry javascript files [default: cwd] - -o, --output The output binary [default: cwd/release/app.nex] - -r, --runtime The node.js runtime to use [default: "latest"] - -t, --temp The path to store node.js sources [default: cwd/tmp/nexe] - -f, --flags Don't parse node and v8 flags, pass through app flags [default: false] + -i, --input The entry javascript files [default: cwd] + -o, --output The output binary [default: cwd/release/app.nex] + -r, --runtime The node.js runtime to use [default: "latest"] + -t, --temp The path to store node.js sources [default: cwd/tmp/nexe] + -f, --flags Don't parse node and v8 flags, pass through app flags [default: false] -v, --version Display version number -p, --python Set path of python to use. [default: "python"] diff --git a/package.json b/package.json index b770dfb..943b762 100644 --- a/package.json +++ b/package.json @@ -1,30 +1,29 @@ { "author": "Craig Condon ", "name": "nexe", - "description": "Roll node.s applications into a single executable", - "version": "0.3.4", + "description": "Roll node.js applications into a single executable", + "version": "0.3.5", "repository": { "type": "git", "url": "git://github.com/crcn/nexe.git" }, "main": "./lib/index.js", "dependencies": { - "async": "~0.2.10", + "async": "~0.2.6", "builtins": "0.0.7", - "colors": "~0.6.2", - "glob": "~3.2.9", + "colors": "~1.0.3", + "glob": "~4.3.5", "mkdirp": "~0.3.5", - "module-deps": "^3.5.4", - "ncp": "~0.2.7", + "module-deps": "^3.6.4", + "ncp": "~1.0.1", "outcome": "0.0.18", - "progress": "~1.1.3", - "request": "~2.12.0", - "sprintf": "~0.1.3", + "progress": "~1.1.8", + "request": "~2.53.0", + "sprintf": "~0.1.5", "step": "0.0.x", "tar.gz": "0.1.1", - "through": "^2.3.4", - "uglify-js": "^2.4.15", - "yargs": "~1.3.1" + "through": "^2.3.6", + "yargs": "~3.0.4" }, "preferGlobal": "true", "bin": { @@ -32,6 +31,6 @@ }, "devDependencies": { "expect.js": "~0.3.1", - "mocha": "~1.17.1" + "mocha": "~2.1.0" } }