fix: package import name of lodash.isequal

Signed-off-by: Ryan Wang <i@ryanc.cc>
pull/588/head^2
Ryan Wang 2022-07-19 15:41:39 +08:00
parent ccffcd7261
commit 263f510111
3 changed files with 10 additions and 1 deletions

View File

@ -57,6 +57,7 @@
"@tailwindcss/aspect-ratio": "^0.4.0", "@tailwindcss/aspect-ratio": "^0.4.0",
"@types/jsdom": "^16.2.14", "@types/jsdom": "^16.2.14",
"@types/lodash.clonedeep": "4.5.7", "@types/lodash.clonedeep": "4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^17.0.45", "@types/node": "^17.0.45",
"@types/qs": "^6.9.7", "@types/qs": "^6.9.7",
"@types/uuid": "^8.3.4", "@types/uuid": "^8.3.4",

View File

@ -19,6 +19,7 @@ importers:
'@tailwindcss/aspect-ratio': ^0.4.0 '@tailwindcss/aspect-ratio': ^0.4.0
'@types/jsdom': ^16.2.14 '@types/jsdom': ^16.2.14
'@types/lodash.clonedeep': 4.5.7 '@types/lodash.clonedeep': 4.5.7
'@types/lodash.isequal': ^4.5.6
'@types/node': ^17.0.45 '@types/node': ^17.0.45
'@types/qs': ^6.9.7 '@types/qs': ^6.9.7
'@types/uuid': ^8.3.4 '@types/uuid': ^8.3.4
@ -102,6 +103,7 @@ importers:
'@tailwindcss/aspect-ratio': 0.4.0_tailwindcss@3.1.6 '@tailwindcss/aspect-ratio': 0.4.0_tailwindcss@3.1.6
'@types/jsdom': 16.2.14 '@types/jsdom': 16.2.14
'@types/lodash.clonedeep': 4.5.7 '@types/lodash.clonedeep': 4.5.7
'@types/lodash.isequal': 4.5.6
'@types/node': 17.0.45 '@types/node': 17.0.45
'@types/qs': 6.9.7 '@types/qs': 6.9.7
'@types/uuid': 8.3.4 '@types/uuid': 8.3.4
@ -2446,6 +2448,12 @@ packages:
'@types/lodash': 4.14.182 '@types/lodash': 4.14.182
dev: true dev: true
/@types/lodash.isequal/4.5.6:
resolution: {integrity: sha512-Ww4UGSe3DmtvLLJm2F16hDwEQSv7U0Rr8SujLUA2wHI2D2dm8kPu6Et+/y303LfjTIwSBKXB/YTUcAKpem/XEg==}
dependencies:
'@types/lodash': 4.14.182
dev: true
/@types/lodash/4.14.182: /@types/lodash/4.14.182:
resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==} resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
dev: true dev: true

View File

@ -1,4 +1,4 @@
import isEqual from "lodash.isEqual"; import isEqual from "lodash.isequal";
export function hasPermission( export function hasPermission(
uiPermissions: Array<string>, uiPermissions: Array<string>,