koatty_container
Advanced tools
Comparing version 1.4.1 to 1.4.2
@@ -5,2 +5,4 @@ # Changelog | ||
### [1.4.2](https://github.com/koatty/koatty_container/compare/v1.4.1...v1.4.2) (2021-06-29) | ||
### [1.4.1](https://github.com/koatty/koatty_container/compare/v1.3.12...v1.4.1) (2021-06-28) |
@@ -7,7 +7,7 @@ /** | ||
*/ | ||
export { AOPType, IAspect, Aspect, Before, BeforeEach, After, AfterEach } from "./AOP"; | ||
export { Autowired } from "./Autowired"; | ||
export * from "./Container"; | ||
export * from "./IContainer"; | ||
export * from "./Util"; | ||
export { Autowired } from "./Autowired"; | ||
export { Config, Value } from "./Value"; | ||
export { AOPType, IAspect, Aspect, Before, BeforeEach, After, AfterEach } from "./AOP"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Value = exports.Config = exports.Autowired = exports.AfterEach = exports.After = exports.BeforeEach = exports.Before = exports.Aspect = exports.AOPType = void 0; | ||
exports.AfterEach = exports.After = exports.BeforeEach = exports.Before = exports.Aspect = exports.AOPType = exports.Value = exports.Config = exports.Autowired = void 0; | ||
const tslib_1 = require("tslib"); | ||
@@ -11,2 +11,10 @@ /** | ||
*/ | ||
tslib_1.__exportStar(require("./Container"), exports); | ||
tslib_1.__exportStar(require("./IContainer"), exports); | ||
tslib_1.__exportStar(require("./Util"), exports); | ||
var Autowired_1 = require("./Autowired"); | ||
Object.defineProperty(exports, "Autowired", { enumerable: true, get: function () { return Autowired_1.Autowired; } }); | ||
var Value_1 = require("./Value"); | ||
Object.defineProperty(exports, "Config", { enumerable: true, get: function () { return Value_1.Config; } }); | ||
Object.defineProperty(exports, "Value", { enumerable: true, get: function () { return Value_1.Value; } }); | ||
var AOP_1 = require("./AOP"); | ||
@@ -19,10 +27,2 @@ Object.defineProperty(exports, "AOPType", { enumerable: true, get: function () { return AOP_1.AOPType; } }); | ||
Object.defineProperty(exports, "AfterEach", { enumerable: true, get: function () { return AOP_1.AfterEach; } }); | ||
var Autowired_1 = require("./Autowired"); | ||
Object.defineProperty(exports, "Autowired", { enumerable: true, get: function () { return Autowired_1.Autowired; } }); | ||
tslib_1.__exportStar(require("./Container"), exports); | ||
tslib_1.__exportStar(require("./IContainer"), exports); | ||
tslib_1.__exportStar(require("./Util"), exports); | ||
var Value_1 = require("./Value"); | ||
Object.defineProperty(exports, "Config", { enumerable: true, get: function () { return Value_1.Config; } }); | ||
Object.defineProperty(exports, "Value", { enumerable: true, get: function () { return Value_1.Value; } }); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "koatty_container", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "IOC Container for Koatty.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
1856038