@adonisjs/fold
Advanced tools
Comparing version 6.2.0 to 6.2.1
@@ -18,2 +18,5 @@ "use strict"; | ||
}, | ||
apply(target, ...args) { | ||
return callTrap(target, 'apply', ...args); | ||
}, | ||
defineProperty(target, ...args) { | ||
@@ -50,10 +53,7 @@ return callTrap(target, 'defineProperty', ...args); | ||
}; | ||
const classHandler = { | ||
const classHandler = Object.assign({}, objectHandler, { | ||
construct(target, ...args) { | ||
return callTrap(target, 'construct', args); | ||
}, | ||
get(target, ...args) { | ||
return callTrap(target, 'get', ...args); | ||
}, | ||
}; | ||
}); | ||
class IoCProxyObject { | ||
@@ -60,0 +60,0 @@ constructor(binding, actual, container) { |
{ | ||
"name": "@adonisjs/fold", | ||
"version": "6.2.0", | ||
"version": "6.2.1", | ||
"description": "Dependency manager and ioc container for your next NodeJs application", | ||
@@ -38,3 +38,3 @@ "scripts": { | ||
"@poppinss/dev-utils": "^1.0.1", | ||
"@types/node": "^12.7.4", | ||
"@types/node": "^12.7.8", | ||
"commitizen": "^4.0.3", | ||
@@ -44,14 +44,14 @@ "cz-conventional-changelog": "^3.0.2", | ||
"doctoc": "^1.4.0", | ||
"husky": "^3.0.5", | ||
"husky": "^3.0.7", | ||
"japa": "^3.0.1", | ||
"mrm": "^1.2.2", | ||
"np": "^5.0.3", | ||
"np": "^5.1.0", | ||
"reflect-metadata": "^0.1.13", | ||
"ts-node": "^8.3.0", | ||
"tslint": "^5.19.0", | ||
"ts-node": "^8.4.1", | ||
"tslint": "^5.20.0", | ||
"tslint-eslint-rules": "^5.4.0", | ||
"typedoc": "^0.15.0", | ||
"typedoc-plugin-external-module-name": "^2.1.0", | ||
"typedoc-plugin-markdown": "^2.1.11", | ||
"typescript": "^3.6.2" | ||
"typedoc-plugin-markdown": "^2.2.7", | ||
"typescript": "^3.6.3" | ||
}, | ||
@@ -58,0 +58,0 @@ "nyc": { |
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
50154