@dankreiger/groop
Advanced tools
Comparing version 0.1.25 to 0.1.26
export type ObjectKey = string | number | symbol; | ||
export type EntityDict<E, Key extends ObjectKey> = { | ||
entities: Record<Key, E>; | ||
export type EntityDict<Entity, Key extends ObjectKey> = { | ||
entities: Record<Key, Entity | undefined>; | ||
ids: Key[]; | ||
}; |
{ | ||
"name": "@dankreiger/groop", | ||
"version": "0.1.25", | ||
"version": "0.1.26", | ||
"description": "Normalize an array of objects by a property.", | ||
@@ -44,12 +44,12 @@ "homepage": "https://github.com/dankreiger/groop#readme", | ||
"devDependencies": { | ||
"@babel/core": "7.18.6", | ||
"@babel/plugin-transform-runtime": "7.18.6", | ||
"@babel/preset-env": "7.18.6", | ||
"@babel/core": "7.20.2", | ||
"@babel/plugin-transform-runtime": "7.19.6", | ||
"@babel/preset-env": "7.20.2", | ||
"@babel/preset-typescript": "7.18.6", | ||
"@babel/runtime": "7.18.6", | ||
"@babel/runtime": "7.20.1", | ||
"@commitlint/cli": "17.3.0", | ||
"@commitlint/config-conventional": "17.0.3", | ||
"@commitlint/config-conventional": "17.3.0", | ||
"@commitlint/prompt-cli": "17.3.0", | ||
"@rollup/plugin-babel": "5.3.1", | ||
"@rollup/plugin-commonjs": "22.0.1", | ||
"@rollup/plugin-commonjs": "22.0.2", | ||
"@rollup/plugin-node-resolve": "13.3.0", | ||
@@ -61,8 +61,8 @@ "@semantic-release/changelog": "6.0.1", | ||
"@size-limit/preset-small-lib": "8.1.0", | ||
"@size-limit/webpack": "^8.1.0", | ||
"@size-limit/webpack-why": "^8.1.0", | ||
"@types/jest": "28.1.8", | ||
"@size-limit/webpack": "8.1.0", | ||
"@size-limit/webpack-why": "8.1.0", | ||
"@types/jest": "29.2.3", | ||
"@types/node": "18.11.9", | ||
"@typescript-eslint/eslint-plugin": "^5.44.0", | ||
"@typescript-eslint/parser": "^5.44.0", | ||
"@typescript-eslint/eslint-plugin": "5.44.0", | ||
"@typescript-eslint/parser": "5.44.0", | ||
"commitizen": "4.2.5", | ||
@@ -74,3 +74,3 @@ "cz-conventional-changelog": "3.3.0", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"jest": "28.1.3", | ||
"jest": "29.3.1", | ||
"lefthook": "1.2.2", | ||
@@ -82,9 +82,9 @@ "prettier": "2.7.1", | ||
"rollup-plugin-typescript2": "0.32.1", | ||
"scripty": "2.1.0", | ||
"scripty": "2.1.1", | ||
"semantic-release": "19.0.5", | ||
"size-limit": "8.1.0", | ||
"sort-package-json": "1.57.0", | ||
"ts-jest": "28.0.8", | ||
"ts-jest": "29.0.3", | ||
"ts-node": "10.9.1", | ||
"tslib": "2.4.0", | ||
"tslib": "2.4.1", | ||
"typescript": "4.9.3" | ||
@@ -91,0 +91,0 @@ }, |
export type ObjectKey = string | number | symbol; | ||
export type EntityDict<E, Key extends ObjectKey> = { | ||
entities: Record<Key, E>; | ||
export type EntityDict<Entity, Key extends ObjectKey> = { | ||
entities: Record<Key, Entity | undefined>; | ||
ids: Key[]; | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
8078
0