Version bump 0.3.5, update depends
This commit is contained in:
+2
-1
@@ -1,3 +1,4 @@
|
|||||||
node_modules
|
node_modules
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.nex
|
*.nex
|
||||||
|
npm-debug.log
|
||||||
@@ -101,7 +101,7 @@ Via NPM:
|
|||||||
Or git:
|
Or git:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone
|
git clone https://github.com/crcn/nexe.git
|
||||||
```
|
```
|
||||||
|
|
||||||
### CLI Usage
|
### CLI Usage
|
||||||
@@ -111,11 +111,11 @@ Or git:
|
|||||||
Usage: nexe -i [sources] -o [binary] [options]
|
Usage: nexe -i [sources] -o [binary] [options]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-i, --input The entry javascript files [default: cwd]
|
-i, --input The entry javascript files [default: cwd]
|
||||||
-o, --output The output binary [default: cwd/release/app.nex]
|
-o, --output The output binary [default: cwd/release/app.nex]
|
||||||
-r, --runtime The node.js runtime to use [default: "latest"]
|
-r, --runtime The node.js runtime to use [default: "latest"]
|
||||||
-t, --temp The path to store node.js sources [default: cwd/tmp/nexe]
|
-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]
|
-f, --flags Don't parse node and v8 flags, pass through app flags [default: false]
|
||||||
-v, --version Display version number
|
-v, --version Display version number
|
||||||
-p, --python Set path of python to use. [default: "python"]
|
-p, --python Set path of python to use. [default: "python"]
|
||||||
|
|
||||||
|
|||||||
+13
-14
@@ -1,30 +1,29 @@
|
|||||||
{
|
{
|
||||||
"author": "Craig Condon <craig.j.condon@gmail.com>",
|
"author": "Craig Condon <craig.j.condon@gmail.com>",
|
||||||
"name": "nexe",
|
"name": "nexe",
|
||||||
"description": "Roll node.s applications into a single executable",
|
"description": "Roll node.js applications into a single executable",
|
||||||
"version": "0.3.4",
|
"version": "0.3.5",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/crcn/nexe.git"
|
"url": "git://github.com/crcn/nexe.git"
|
||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "~0.2.10",
|
"async": "~0.2.6",
|
||||||
"builtins": "0.0.7",
|
"builtins": "0.0.7",
|
||||||
"colors": "~0.6.2",
|
"colors": "~1.0.3",
|
||||||
"glob": "~3.2.9",
|
"glob": "~4.3.5",
|
||||||
"mkdirp": "~0.3.5",
|
"mkdirp": "~0.3.5",
|
||||||
"module-deps": "^3.5.4",
|
"module-deps": "^3.6.4",
|
||||||
"ncp": "~0.2.7",
|
"ncp": "~1.0.1",
|
||||||
"outcome": "0.0.18",
|
"outcome": "0.0.18",
|
||||||
"progress": "~1.1.3",
|
"progress": "~1.1.8",
|
||||||
"request": "~2.12.0",
|
"request": "~2.53.0",
|
||||||
"sprintf": "~0.1.3",
|
"sprintf": "~0.1.5",
|
||||||
"step": "0.0.x",
|
"step": "0.0.x",
|
||||||
"tar.gz": "0.1.1",
|
"tar.gz": "0.1.1",
|
||||||
"through": "^2.3.4",
|
"through": "^2.3.6",
|
||||||
"uglify-js": "^2.4.15",
|
"yargs": "~3.0.4"
|
||||||
"yargs": "~1.3.1"
|
|
||||||
},
|
},
|
||||||
"preferGlobal": "true",
|
"preferGlobal": "true",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -32,6 +31,6 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"expect.js": "~0.3.1",
|
"expect.js": "~0.3.1",
|
||||||
"mocha": "~1.17.1"
|
"mocha": "~2.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user