replaced bluebird with any-promise to allow consumers of the library to choose their promise implementation

This commit is contained in:
Tim Hardy
2016-09-11 23:33:26 -05:00
parent 4626f8f6bf
commit ba390df7b6
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const Template = require('./src/parser');
const Expression = require('./src/expression.js');
const tags = require('./tags');
const filters = require('./filters');
const Promise = require("bluebird");
const Promise = require('any-promise');
var _engine = {
init: function(tag, filter, options) {