-
Notifications
You must be signed in to change notification settings - Fork 333
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
chore: bump ts node #9498
chore: bump ts node #9498
Conversation
@@ -12,13 +11,13 @@ export async function up() { | |||
.insert( | |||
r | |||
.table('ReflectPrompt') | |||
.filter((row) => row('id').count().gt(100)) | |||
.map((row) => row.merge({id: row('id').slice(0, 100)})) | |||
.filter((row: RDatum) => row('id').count().gt(100)) |
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.
It seems bumping this version of TS Node made a few more no implict: any
buggies appear. This (and below) popped up when I was testing a migration
nice! |
TIL, thank you! |
Description
Dumps ts-node to facilitate a more useful REPL.
Demo
Loom: https://www.loom.com/share/0d3311fe7a5640c5a0e9d81781c7f6b9?sid=895f8705-f17d-4928-9f37-31ccd717e3a9
Testing scenarios
[Please list all the testing scenarios a reviewer has to check before approving the PR]
Run as:
At the REPL prompt, try:
Neat!
task.json
(⌘ + shift + p) ->Task: Open User Tasks
and add totasks
array:Task: Run Task
Final checklist