-
Notifications
You must be signed in to change notification settings - Fork 3
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
Replace esbuild with Rollup #122
Conversation
As we are seeing some problems with our current build setup, try reverting to rollup.
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.
Works with cra and vite locally.
.github/actions/build/action.yml
Outdated
@@ -5,7 +5,7 @@ runs: | |||
steps: | |||
- uses: actions/setup-node@v3 | |||
with: | |||
node-version: "16" | |||
node-version: "18" |
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.
Could 20 work? That's our new target version in the other services.
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 can bump
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.
Works for me as well (CRA + Vite)
Align node version with what we are using elsewhere in the company. Also replace process.env variables with their actual values to prevent setups such as Vite needing more configuration.
As we are seeing some problems with our current build setup, try reverting to rollup.