@openmrs/esm-config 3.1.10-pre.559 → 3.1.10-pre.573
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## What is this?
|
|
8
8
|
|
|
9
|
-
This is the configuration library for [OpenMRS
|
|
9
|
+
This is the configuration library for [OpenMRS Frontend 3.0](https://wiki.openmrs.org/display/projects/OpenMRS+3.0%3A+A+Frontend+Framework+that+enables+collaboration+and+better+User+Experience).
|
|
10
10
|
|
|
11
11
|
Please see the [Developer Documentation](https://openmrs.github.io/openmrs-esm-core/#/main/config)
|
|
12
12
|
for information about how to use it.
|
|
@@ -14,7 +14,7 @@ for information about how to use it.
|
|
|
14
14
|
## Contributing & Development
|
|
15
15
|
|
|
16
16
|
PRs welcome! See
|
|
17
|
-
[OpenMRS
|
|
17
|
+
[OpenMRS Frontend RFC-20](https://github.com/openmrs/openmrs-rfc-frontend/blob/master/text/0020-contributing-guidelines.md#contributing-guidelines)
|
|
18
18
|
for guidelines about contributing.
|
|
19
19
|
|
|
20
20
|
Maintainer: Brandon Istenes (bistenes@pih.org)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-config",
|
|
3
|
-
"version": "3.1.10-pre.
|
|
3
|
+
"version": "3.1.10-pre.573",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "A configuration library for the OpenMRS Single-Spa framework.",
|
|
6
6
|
"browser": "dist/openmrs-esm-module-config.js",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"systemjs": "6.x"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@openmrs/esm-globals": "^3.1.10-pre.
|
|
50
|
-
"@openmrs/esm-state": "^3.1.10-pre.
|
|
49
|
+
"@openmrs/esm-globals": "^3.1.10-pre.573",
|
|
50
|
+
"@openmrs/esm-state": "^3.1.10-pre.573",
|
|
51
51
|
"@types/ramda": "^0.26.44",
|
|
52
52
|
"@types/systemjs": "^6.1.0",
|
|
53
53
|
"babel-plugin-ramda": "^2.0.0",
|
|
54
54
|
"single-spa": "^5.9.2"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b2dd53d75fb06bb10a600db4db9b7eaa98a0586f"
|
|
57
57
|
}
|
|
@@ -830,7 +830,10 @@ describe("temporary config", () => {
|
|
|
830
830
|
let config = await Config.getConfig("foo-module");
|
|
831
831
|
expect(config).toStrictEqual({ foo: 3 });
|
|
832
832
|
temporaryConfigStore.setState({
|
|
833
|
-
config: unset(temporaryConfigStore.getState(), [
|
|
833
|
+
config: unset(temporaryConfigStore.getState(), [
|
|
834
|
+
"foo-module",
|
|
835
|
+
"foo",
|
|
836
|
+
]) as any,
|
|
834
837
|
});
|
|
835
838
|
config = await Config.getConfig("foo-module");
|
|
836
839
|
expect(config).toStrictEqual({ foo: "baz" });
|