@openmrs/esm-utils 5.1.1-pre.1012 → 5.1.1-pre.1015

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.
@@ -1,4 +1,4 @@
1
- @openmrs/esm-utils:build: cache hit, replaying output e45b806dbcd25edf
1
+ @openmrs/esm-utils:build: cache hit, replaying output 2beaf021e1084e27
2
2
  @openmrs/esm-utils:build: asset openmrs-esm-utils.js 31.4 KiB [emitted] [minimized] (name: main) 1 related asset
3
3
  @openmrs/esm-utils:build: orphan modules 22.9 KiB [orphan] 5 modules
4
4
  @openmrs/esm-utils:build: runtime modules 937 bytes 4 modules
@@ -14,4 +14,4 @@
14
14
  @openmrs/esm-utils:build: ./src/index.ts + 5 modules 23 KiB [built] [code generated]
15
15
  @openmrs/esm-utils:build: external "dayjs" 42 bytes [built] [code generated]
16
16
  @openmrs/esm-utils:build: external "i18next" 42 bytes [built] [code generated]
17
- @openmrs/esm-utils:build: webpack 5.88.0 compiled successfully in 12143 ms
17
+ @openmrs/esm-utils:build: webpack 5.88.0 compiled successfully in 11585 ms
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-utils",
3
- "version": "5.1.1-pre.1012",
3
+ "version": "5.1.1-pre.1015",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Helper utilities for OpenMRS",
6
6
  "browser": "dist/openmrs-esm-utils.js",
@@ -51,5 +51,5 @@
51
51
  "dependencies": {
52
52
  "semver": "7.3.2"
53
53
  },
54
- "gitHead": "492a33d94295a8e20151abfe76e25ac865d09437"
54
+ "gitHead": "45d38d81f2a0d07defcfc86486f77ab049a62e1f"
55
55
  }
@@ -145,6 +145,8 @@ describe("Openmrs Dates", () => {
145
145
  day: "2-digit",
146
146
  })
147
147
  .replace(/ /g, "-") + ", 03:22 PM";
148
- expect(formatDate(testDate, { noToday: true })).toEqual(expected);
148
+ expect(
149
+ formatDate(testDate, { noToday: true }).replaceAll(/[\u202F]/g, " ")
150
+ ).toEqual(expected);
149
151
  });
150
152
  });