@equinor/fusion-framework-module-service-discovery
Advanced tools
Comparing version 0.2.4 to 0.3.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [0.3.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-service-discovery@0.2.4...@equinor/fusion-framework-module-service-discovery@0.3.0) (2022-06-13) | ||
### Features | ||
* **nodules-service-discovery:** make http-module dependency ([001dc2a](https://github.com/equinor/fusion-framework/commit/001dc2acbcd2e9a31a19fe9e7c9cd903fb20b2a1)) | ||
## 0.2.4 (2022-06-13) | ||
@@ -8,0 +19,0 @@ |
@@ -5,4 +5,7 @@ import { ServiceDiscoveryConfigurator } from './configurator'; | ||
name: 'serviceDiscovery', | ||
deps: ['http'], | ||
configure: () => new ServiceDiscoveryConfigurator(), | ||
initialize: ({ serviceDiscovery: config }, modules) => new ServiceDiscoveryProvider(config, modules.http), | ||
initialize: ({ serviceDiscovery: config }, modules) => { | ||
return new ServiceDiscoveryProvider(config, modules.http); | ||
}, | ||
postConfigure: (config) => { | ||
@@ -9,0 +12,0 @@ const { clientKey } = config.serviceDiscovery; |
{ | ||
"name": "@equinor/fusion-framework-module-service-discovery", | ||
"version": "0.2.4", | ||
"version": "0.3.0", | ||
"description": "", | ||
@@ -35,3 +35,3 @@ "main": "./dist/esm/index.js", | ||
}, | ||
"gitHead": "e4d7cad7992443920ba9549d8b3ad8c579a26522" | ||
"gitHead": "2b5c8c7384850ab253cf215b2be9525fa01340cd" | ||
} |
@@ -19,5 +19,7 @@ import { IServiceDiscoveryConfigurator, ServiceDiscoveryConfigurator } from './configurator'; | ||
name: 'serviceDiscovery', | ||
deps: ['http'], | ||
configure: () => new ServiceDiscoveryConfigurator(), | ||
initialize: ({ serviceDiscovery: config }, modules) => | ||
new ServiceDiscoveryProvider(config, modules.http), | ||
initialize: ({ serviceDiscovery: config }, modules) => { | ||
return new ServiceDiscoveryProvider(config, modules.http); | ||
}, | ||
postConfigure: (config) => { | ||
@@ -24,0 +26,0 @@ const { clientKey } = config.serviceDiscovery; |
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
84401
334