-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use queue to write to disk #56
Conversation
distance: number; | ||
}>; | ||
avgDistanceMap: UAPMap<{ | ||
avgDistanceMap: UAPMap<{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a common lint standard would resolve all this stuff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
most of these chagnes are bc of linting diffs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any you prefer? ive got prettier on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
likewise but the workspace settins are different probabley
}); | ||
|
||
// Function to prompt for SIZE_LIMIT | ||
const promptForSizeLimit = () => { | ||
return new Promise<void>((resolve) => { | ||
rl.question('Enter the SIZE_LIMIT in MB (default is 10MB): ', (input) => { | ||
const inputSizeMB = parseInt(input, 10); | ||
const inputSizeMB = Number(input); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this doesn't work rn...
No description provided.