Use vite to replace webpack
-
Review changes -
-
Download -
Patches
-
Plain diff
Resolves #1205 (closed)
Checklist
-
can enter index.html and load js -
service worker - has
transformSW
option, if enabled it will bundle and transform to iife
- has
-
handling of static assets (config.json, emoji.json, tos, default bg, default logo) -
emoji annotations -
wasm -
commit hash -
dev overrides -
eslint -
stylelint -
remove webpack
Changes
- BREAKING: static/emoji.json is no longer there, meaning server admins cannot provide their own set of unicode emojis, but this allows it to be cached properly (not implemented here).
- BREAKING:
static/img/nsfw.2958239.png
is nowstatic/img/nsfw.DepQPhG0.png
, which may affect people who specifies exactly this path as the cover image. - BREAKING: css source map does not work in production https://github.com/vitejs/vite/issues/2830
- BREAKING: dropped support for browsers that do not support
<script type="module">
- internal: tests: now uses vitest, not fully compatible with mocha, but has a similar interface. it internally uses chai and sinon.
- internal: static path is now under
/public/static
, which is mapped to/static
in dev and prod builds (resulting directory unchanged)
Test Plan
Both in dev and in prod build:
- Verify page loads
- Verify styles are good
- Verify style editor works
- Verify the service worker can be registered after unregistering any current ones, and push notifications work
- Verify you can load flash content
- Verify commit hash is set accordingly
- Verify source maps work (js and css) (css source map does not work in production)
- Verify i18n works by switching to another language than English, seeing the UI in the other language, and check you can search emojis in that language (e.g. when Chinese is in the language list, you can search for the cat emoji by entering
猫
in emoji picker) (this depends on the actual content in emoji-annotations, not all languages are well supported)
Only in dev:
- Verify HMR works (change something, and expect
[vite] hot updated: ...
in logs) - Verify eslint and stylelint errors are reported in the console (but they do not block the content to be served on the web, and do not show up on the webpage)
- Verify that, if transformSW is set to true in local options, /sw-pleroma.js is served as iife, and you can successfully register the service worker after unregistering any current ones
- Verify that, if transformSW is set to false in local options, /sw-pleroma.js is served as ESM, and you can successfully register the service worker after unregistering any current ones in a browser that supports ESM service workers
Edited by tusooa
Merge request reports
Compare and
- version 170ea6cd00
- version 16b51f870c
- version 15c2691fed
- version 14eede2f5a
- version 131ede2a19
- version 12eb6d9cdd
- version 11cca5e31f
- version 100a5219b6
- version 921e375ad
- version 830a96902
- version 78d3045f8
- version 6ff491b6d
- version 5b1663aeb
- version 428ec8f52
- version 3d2a3313c
- version 255e45303
- version 12e799563
- develop (base)
- latest version44bee26512 commits,
- version 170ea6cd0011 commits,
- version 16b51f870c10 commits,
- version 15c2691fed10 commits,
- version 14eede2f5a8 commits,
- version 131ede2a197 commits,
- version 12eb6d9cdd4 commits,
- version 11cca5e31f3 commits,
- version 100a5219b63 commits,
- version 921e375ad3 commits,
- version 830a969023 commits,
- version 78d3045f83 commits,
- version 6ff491b6d3 commits,
- version 5b1663aeb2 commits,
- version 428ec8f522 commits,
- version 3d2a3313c1 commit,
- version 255e453031 commit,
- version 12e7995631 commit,
Compare changes
- Side-by-side
- Inline
Files
58Loading