Merge pull request #2 from crcn/master

Pull in crcn/nexe master changes
This commit is contained in:
Adam Snodgrass
2014-02-28 21:33:12 -06:00
3 changed files with 5 additions and 2 deletions
+2
View File
@@ -50,6 +50,8 @@ exports.compile = function (options, complete) {
function writeBundle (source, next) {
bundlePath = path.join(nodeCompiler.dir, "lib", "nexe.js");
_log("bundle -> %s", bundlePath);
// same path as all the other JS files
fs.writeFile(bundlePath, source, next);
},
+2 -1
View File
@@ -1,5 +1,6 @@
var async = require("async"),
fs = require("fs");
fs = require("fs"),
_log = require("./log");
var _log = require('./log');
+1 -1
View File
@@ -2,7 +2,7 @@
"author": "Craig Condon <craig.j.condon@gmail.com>",
"name": "nexe",
"description": "Roll node.s applications into a single executable",
"version": "0.2.6",
"version": "0.2.7",
"repository": {
"type": "git",
"url": "git://github.com/crcn/nexe.git"