@launchdarkly/js-sdk-common 2.24.1 → 2.24.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.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@launchdarkly/js-sdk-common` will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
|
|
4
4
|
|
|
5
|
+
## [2.24.2](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v2.24.1...js-sdk-common-v2.24.2) (2026-04-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* enabling eslint `ban-types` rule and fixed string typing ([#1313](https://github.com/launchdarkly/js-core/issues/1313)) ([f6d907f](https://github.com/launchdarkly/js-core/commit/f6d907f1a65abd0b41827f3c827e6dad896b16b1))
|
|
11
|
+
|
|
5
12
|
## [2.24.1](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v2.24.0...js-sdk-common-v2.24.1) (2026-04-14)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
* @param obj
|
|
7
7
|
* @param ignoreKeys
|
|
8
8
|
*/
|
|
9
|
-
declare const deepCompact: <T extends
|
|
9
|
+
declare const deepCompact: <T extends object>(obj?: T | undefined, ignoreKeys?: string[]) => T | undefined;
|
|
10
10
|
export default deepCompact;
|
|
11
11
|
//# sourceMappingURL=deepCompact.d.ts.map
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
* @param obj
|
|
7
7
|
* @param ignoreKeys
|
|
8
8
|
*/
|
|
9
|
-
declare const deepCompact: <T extends
|
|
9
|
+
declare const deepCompact: <T extends object>(obj?: T | undefined, ignoreKeys?: string[]) => T | undefined;
|
|
10
10
|
export default deepCompact;
|
|
11
11
|
//# sourceMappingURL=deepCompact.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launchdarkly/js-sdk-common",
|
|
3
|
-
"version": "2.24.
|
|
3
|
+
"version": "2.24.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/esm/index.mjs",
|
|
6
6
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -52,8 +52,6 @@
|
|
|
52
52
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
53
53
|
"@typescript-eslint/parser": "^6.20.0",
|
|
54
54
|
"eslint": "^8.45.0",
|
|
55
|
-
"eslint-config-airbnb-base": "^15.0.0",
|
|
56
|
-
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
57
55
|
"eslint-config-prettier": "^8.8.0",
|
|
58
56
|
"eslint-plugin-import": "^2.27.5",
|
|
59
57
|
"eslint-plugin-jest": "^27.6.3",
|