-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* split reader, remove test block range * update * update deploy script * change unprocessed block queue * clear chache * remove BlockState types * increase list limit * update logs, fix batch to single switch * 0.0.12
- Loading branch information
Showing
29 changed files
with
718 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alien-worlds/aw-history", | ||
"version": "0.0.9", | ||
"version": "0.0.12", | ||
"description": "", | ||
"packageManager": "[email protected]", | ||
"main": "build/index.js", | ||
|
@@ -38,9 +38,9 @@ | |
"typescript": "^4.8.2" | ||
}, | ||
"dependencies": { | ||
"@alien-worlds/aw-broadcast": "^0.0.9", | ||
"@alien-worlds/aw-core": "^0.0.15", | ||
"@alien-worlds/aw-workers": "^0.0.4", | ||
"@alien-worlds/aw-broadcast": "^0.0.12", | ||
"@alien-worlds/aw-core": "^0.0.21", | ||
"@alien-worlds/aw-workers": "^0.0.5", | ||
"async": "^3.2.4", | ||
"commander": "^10.0.1", | ||
"crypto": "^1.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
export enum Mode { | ||
Default = 'default', | ||
Replay = 'replay', | ||
Test = 'test', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export class UnknownModeError extends Error { | ||
constructor(mode: string) { | ||
super(`Unknown mode "${mode}"`); | ||
constructor(mode: string, modes: string[]) { | ||
super(`Unknown mode "${mode}". Use: ${modes.join(', ')}`); | ||
} | ||
} |
Oops, something went wrong.