@equinor/fusion-framework-module
Advanced tools
Comparing version 4.0.0 to 4.1.0
@@ -6,2 +6,8 @@ # Change Log | ||
## 4.1.0 (2023-05-23) | ||
### Features | ||
- **module:** create base configurator ([f94b51e](https://github.com/equinor/fusion-framework/commit/f94b51e53d6ae235456e2ea2b5a82db5aa1a18f0)) | ||
## 4.0.0 (2023-05-05) | ||
@@ -8,0 +14,0 @@ |
export * from './types'; | ||
export { initializeModules } from './initialize-modules'; | ||
export { ModuleConsoleLogger } from './logger'; | ||
export { ModulesConfigurator } from './configurator'; | ||
export { ModuleConfigBuilder } from './ModuleConfigBuilder'; | ||
export { BaseConfigBuilder, } from './BaseConfigBuilder'; | ||
export { ModulesConfigurator, } from './configurator'; | ||
//# sourceMappingURL=index.js.map |
export * from './types'; | ||
export { initializeModules } from './initialize-modules'; | ||
export { ModuleConsoleLogger } from './logger'; | ||
export { ModulesConfigurator } from './configurator'; | ||
export { ModuleConfigBuilder } from './ModuleConfigBuilder'; | ||
export type { IModuleConfigurator, IModulesConfigurator } from './configurator'; | ||
export { type ConfigBuilderCallback, type ConfigBuilderCallbackArgs, BaseConfigBuilder, } from './BaseConfigBuilder'; | ||
export { type IModuleConfigurator, type IModulesConfigurator, ModulesConfigurator, } from './configurator'; |
{ | ||
"name": "@equinor/fusion-framework-module", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "", | ||
@@ -31,3 +31,3 @@ "main": "dist/esm/index.js", | ||
}, | ||
"gitHead": "851d70038b9b015663981a9456247f3d5dd0c3a2" | ||
"gitHead": "753d04a18764d5a16d9491ec189df90089534879" | ||
} |
@@ -6,6 +6,13 @@ export * from './types'; | ||
export { ModulesConfigurator } from './configurator'; | ||
export { ModuleConfigBuilder } from './ModuleConfigBuilder'; | ||
export { | ||
type ConfigBuilderCallback, | ||
type ConfigBuilderCallbackArgs, | ||
BaseConfigBuilder, | ||
} from './BaseConfigBuilder'; | ||
export type { IModuleConfigurator, IModulesConfigurator } from './configurator'; | ||
export { | ||
type IModuleConfigurator, | ||
type IModulesConfigurator, | ||
ModulesConfigurator, | ||
} from './configurator'; |
import { AnyModule, CombinedModules, ModuleInitializerArgs, Modules, ModuleType } from './types'; | ||
/** | ||
* @deprecated @see {@link BaseConfigBuilder} | ||
*/ | ||
export abstract class ModuleConfigBuilder< | ||
@@ -4,0 +7,0 @@ TModules extends Array<AnyModule> | unknown = unknown, |
Sorry, the diff of this file is not supported yet
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
152012
33
1158