Skip to content

Commit

Permalink
Fix tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
wschurman committed Jun 4, 2024
1 parent 672e31a commit 46d0bc0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/entity/src/errors/EntityError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default abstract class EntityError extends ES6Error {
public abstract readonly state: EntityErrorState;
public abstract readonly code: EntityErrorCode;

constructor(message: string, public readonly cause?: Error) {
constructor(message: string, public override readonly cause?: Error) {
super(message);
}
}
20 changes: 13 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -675,37 +675,38 @@
integrity sha512-reebgVwjf8VfZxSXU7e+UjpXGwcUTIMpWR9FY54Oh70ulhXrQiZei62B4D9bH3SVYMwnDGzifHJ8INRrJ+0L1g==

"@expo/entity-cache-adapter-local-memory@file:packages/entity-cache-adapter-local-memory":
version "0.31.1"
version "0.35.0"
dependencies:
lru-cache "^6.0.0"

"@expo/entity-cache-adapter-redis@file:packages/entity-cache-adapter-redis":
version "0.31.1"
version "0.35.0"

"@expo/entity-database-adapter-knex@file:packages/entity-database-adapter-knex":
version "0.31.1"
version "0.35.0"
dependencies:
knex "^2.4.2"

"@expo/entity-ip-address-field@file:packages/entity-ip-address-field":
version "0.31.1"
version "0.35.0"
dependencies:
ip-address "^8.1.0"

"@expo/entity-secondary-cache-local-memory@file:packages/entity-secondary-cache-local-memory":
version "0.31.1"
version "0.35.0"

"@expo/entity-secondary-cache-redis@file:packages/entity-secondary-cache-redis":
version "0.31.1"
version "0.35.0"

"@expo/entity@file:packages/entity":
version "0.31.1"
version "0.35.0"
dependencies:
"@expo/results" "^1.0.0"
dataloader "^2.0.0"
es6-error "^4.1.1"
invariant "^2.2.4"
uuid "^8.3.0"
uuidv7 "^1.0.0"

"@expo/results@^1.0.0":
version "1.0.0"
Expand Down Expand Up @@ -8661,6 +8662,11 @@ uuid@^9.0.0:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5"
integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==

uuidv7@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/uuidv7/-/uuidv7-1.0.0.tgz#b097dd0d48c5e48edf661199e033f10ebee08cda"
integrity sha512-XkvPwTtSmYwxIE1FSYQTYg79zHL1ZWV5vM/Qyl9ahXCU8enOPPA4bTjzvafvYUB7l2+miv4EqK/qEe75cOXIdA==

[email protected]:
version "2.3.0"
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
Expand Down

0 comments on commit 46d0bc0

Please sign in to comment.