Skip to content
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: Replace Browserify with Vite for bundling #2553

Open
wants to merge 13 commits into
base: alpha
Choose a base branch
from

Conversation

dplewis
Copy link
Member

@dplewis dplewis commented Apr 3, 2025

Pull Request

Issue

Vite is more modern than browserify and has better node polyfilling than standalone rollup.

Closes: #2410
Closes: #2425

Approach

  • Adds umd build for browser script tag
  • Remove gulp-browserify

Limitations

Bundle size and build speed has increased. There are PR's opened to remove dependencies which should significantly reduce the size.

Before:

dist/parse.js 988 kB
dist/parse.min.js 396 kB
dist/parse.weapp.js 988 kB	
dist/parse.weapp.min.js 396 kB	

After:

dist/parse.js  2,110.77 kB │ gzip: 384.42 kB
dist/parse.min.js  946.53 kB │ gzip: 267.08 kB
dist/parse.weapp.js  2,110.81 kB │ gzip: 384.28 kB
dist/parse.weapp.min.js  946.32 kB │ gzip: 267.00 kB
dist/index.cjs.js  1,987.57 kB │ gzip: 380.38 kB
dist/index.esm.js  1,987.55 kB │ gzip: 380.38 kB

Shoutout to @dblythy for getting started on this!

Copy link

parse-github-assistant bot commented Apr 3, 2025

🚀 Thanks for opening this pull request!

Copy link

codecov bot commented Apr 3, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (c7015ba) to head (1e0b45a).
Report is 8 commits behind head on alpha.

Additional details and impacted files
@@            Coverage Diff            @@
##             alpha     #2553   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           64        64           
  Lines         6238      6237    -1     
  Branches      1464      1465    +1     
=========================================
- Hits          6238      6237    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dplewis dplewis requested a review from a team April 3, 2025 05:53
@dplewis
Copy link
Member Author

dplewis commented Apr 3, 2025

@mtrezza @dblythy This is ready for review.

@dplewis dplewis requested a review from mtrezza April 4, 2025 11:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Replace browserify with webpack
2 participants