-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat: export metadata
object in local stage 2
#126
Conversation
test/node/stage_2.ts
Outdated
return | ||
} | ||
|
||
const { stdout, stderr } = await execa('node', [stage2Path]) |
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.
my understanding would be that the code you are generating runs in deno? why are you executing node here?
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 code runs in Node as part of local development, called by the CLI.
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.
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.
Hang on, I'm holding this wrong! This is called from Node but then actually runs in Deno. 🤯
Let me change this.
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.
Done in 4fcd2c1. Thanks!
…#126) * feat: add `metadata` object to local stage 2 * chore: add comment * chore: use file URL in test * chore: adjust test for Node <14 * chore: run stage 2 in Deno
Same as #122 but for the stage 2 file used in local development.