@medipass/utils 11.73.4-feature-migrate-react-core-to-ts.0 → 11.73.4
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/CHANGELOG.md +8 -0
- package/get-env.js +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [11.73.4](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.73.3...@medipass/utils@11.73.4) (2022-12-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @medipass/utils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [11.73.3](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.73.2...@medipass/utils@11.73.3) (2022-12-11)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @medipass/utils
|
package/get-env.js
CHANGED
|
@@ -182,6 +182,7 @@ var Env = /*#__PURE__*/function () {
|
|
|
182
182
|
|
|
183
183
|
for (var key in newEnv) {
|
|
184
184
|
if (Object.prototype.hasOwnProperty.call(newEnv, key)) {
|
|
185
|
+
// $FlowFixMe
|
|
185
186
|
this[key] = newEnv[key];
|
|
186
187
|
}
|
|
187
188
|
}
|
|
@@ -190,6 +191,7 @@ var Env = /*#__PURE__*/function () {
|
|
|
190
191
|
_proto.clear = function clear() {
|
|
191
192
|
for (var key in this) {
|
|
192
193
|
if (Object.prototype.hasOwnProperty.call(this, key)) {
|
|
194
|
+
// $FlowFixMe
|
|
193
195
|
delete this[key];
|
|
194
196
|
}
|
|
195
197
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medipass/utils",
|
|
3
|
-
"version": "11.73.4
|
|
3
|
+
"version": "11.73.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"rimraf": "^2.6.2",
|
|
52
52
|
"typescript": "4.8.4"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "630106f320ab607d326bd13a3390de6a041de835"
|
|
55
55
|
}
|