-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
start to remove app utils #600
Conversation
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.
LGTM. this feels much nicer to me. mind running pnpx changeset
before we merge?
Wasn't sure what our versioning strategy was so I went with |
yeah, i've been doing |
@@ -22,7 +21,7 @@ module.exports = function () { | |||
builder.copy_server_files(server_directory); | |||
renameSync(join(server_directory, 'app.js'), join(server_directory, 'app.mjs')); | |||
|
|||
copy(join(__dirname, 'files'), lambda_directory); | |||
builder.copy(join(__dirname, 'files'), lambda_directory); |
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.
I don't see any method called copy
on the Builder
We really need to introduce type checking everywhere
Relates to #592