Comparing version 0.1.0 to 0.1.1
@@ -13,6 +13,9 @@ /*! | ||
module.exports = function(name) { | ||
return function(app) { | ||
Composer.call(app, name); | ||
app.constructor.inherit(app.constructor, Composer); | ||
return function() { | ||
Composer.call(this, name); | ||
for (var key in Composer.prototype) { | ||
this.constructor.prototype[key] = Composer.prototype[key].bind(this); | ||
} | ||
}; | ||
}; | ||
{ | ||
"name": "base-tasks", | ||
"description": "base-methods plugin that provides a very thin wrapper around <https://github.com/jonschlinkert/composer> for adding task methods to your application.", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"homepage": "https://github.com/jonschlinkert/base-tasks", | ||
@@ -44,2 +44,2 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5280
16