Support ejs 2.0
Fixes #2437. This is still relying on undocumented behavior, but should unbreak the app in the mean time.pull/2452/head
parent
167e0aea59
commit
9b9a747167
|
@ -114,7 +114,7 @@ exports.require = function (name, args, mod) {
|
|||
|
||||
args.e = exports;
|
||||
args.require = require;
|
||||
var template = '<% e._init(buf); %>' + fs.readFileSync(ejspath).toString() + '<% e._exit(); %>';
|
||||
var template = '<% e._init([__output]); %>' + fs.readFileSync(ejspath).toString() + '<% e._exit(); %>';
|
||||
|
||||
exports.info.args.push(args);
|
||||
exports.info.file_stack.push({path: ejspath, inherit: []});
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"cheerio" : ">=0.18.0",
|
||||
"async-stacktrace" : ">=0.0.2",
|
||||
"npm" : ">=2.1.x",
|
||||
"ejs" : "~1.0.0",
|
||||
"ejs" : "^2.0.0",
|
||||
"graceful-fs" : ">=3.0.4",
|
||||
"slide" : ">=1.1.6",
|
||||
"semver" : ">=2.3.0",
|
||||
|
|
Loading…
Reference in New Issue