@cumulus/common 21.3.2-testlerna.0 → 21.3.2

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.
Files changed (3) hide show
  1. package/package.json +5 -5
  2. package/util.d.ts +1 -1
  3. package/util.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/common",
3
- "version": "21.3.2-testlerna.0",
3
+ "version": "21.3.2",
4
4
  "description": "Common utilities used across tasks",
5
5
  "keywords": [
6
6
  "GIBS",
@@ -46,9 +46,9 @@
46
46
  "dependencies": {
47
47
  "@aws-sdk/client-s3": "^3.993.0",
48
48
  "@aws-sdk/signature-v4-crt": "^3.993.0",
49
- "@cumulus/aws-client": "21.3.2-testlerna.0",
50
- "@cumulus/errors": "21.3.2-testlerna.0",
51
- "@cumulus/logger": "21.3.2-testlerna.0",
49
+ "@cumulus/aws-client": "21.3.2",
50
+ "@cumulus/errors": "21.3.2",
51
+ "@cumulus/logger": "21.3.2",
52
52
  "ajv": "^6.12.3",
53
53
  "follow-redirects": "^1.2.4",
54
54
  "fs-extra": "^5.0.0",
@@ -69,5 +69,5 @@
69
69
  "@types/node-forge": "^0.9.5",
70
70
  "@types/url-join": "^4.0.0"
71
71
  },
72
- "gitHead": "ef6577b6caec96a20df8ccff293a9436db32a482"
72
+ "gitHead": "2c77ecb6c0ac426d885bddf637484e438e2b2903"
73
73
  }
package/util.d.ts CHANGED
@@ -73,7 +73,7 @@ export declare const omitDeepBy: OmitDeepBy;
73
73
  * Returns the parsed collection or the original input.
74
74
  *
75
75
  * @param val
76
- * @returns
76
+ * @returns {any}
77
77
  */
78
78
  export declare const parseIfJson: (val: unknown) => any;
79
79
  export {};
package/util.js CHANGED
@@ -114,7 +114,7 @@ exports.omitDeepBy = omitDeepBy;
114
114
  * Returns the parsed collection or the original input.
115
115
  *
116
116
  * @param val
117
- * @returns
117
+ * @returns {any}
118
118
  */
119
119
  const parseIfJson = (val) => {
120
120
  if (!(0, isString_1.default)(val))