-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
build(deno): speed up Rollup copy step #7364
Conversation
|
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
On my machine the Rollup build can be quite slow with initial builds taking 30s, but it was more of a papercut since rebuilds were fast. I was able to narrow it down to the usage of the
gitignore: true
option forrollup-plugin-copy
on the@remix-run/deno
package which no other package uses. I was able to achieve the same build output while avoiding this option.Note that the removed
.gitignore
file was only present forrollup-plugin-copy
to pick up, so with this config change it became redundant.