Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// load the node.js libraries to be abstracted
var fs = require('fs');
var path = require('path');
var Script = process.binding('evals').Script;
var Script = require('vm').Script;

// define a few globals to be compatible with jsrun.jar
global.arguments = global.internal_args || process.argv.slice(2);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"test": "app/test.js"
},
"engines": {
"node": "0.4"
"node": ">=0.4"
},
"dependencies": {},
"devDependencies": {}
}
}