Skip to content

Add WebP support and update dependencies#486

Open
cedric07 wants to merge 13 commits intomasterfrom
feat/webp
Open

Add WebP support and update dependencies#486
cedric07 wants to merge 13 commits intomasterfrom
feat/webp

Conversation

@cedric07
Copy link
Copy Markdown
Contributor

@cedric07 cedric07 commented Apr 24, 2026

  • Added imagemin-webp to package.json and updated yarn.lock.
  • Configured WebP generation in webpack.common.js.
  • Updated SCSS files to support WebP images.
  • Removed obsolete logo SVG file.

Sur la base de cette doc : https://webpack.js.org/plugins/image-minimizer-webpack-plugin/#loader-generator-example-for-imagemin

Par défaut webpack va garder également le fichier non converti dans le dossier compilé.

Pour l'appel au fichier dans le code, il faut lui passer l'option presetdu generator : ?as=webp

Exemple : background-image: url(../img/static/logo.jpg?as=webp) et Webpack viendra automatiquement convertir le fichier en webp et remplacer l'url : background-image: url(images/logo.webp)

Exemple : background-image: url(../img/static/logo.jpg) et Webpack ne fera pas la conversion et gardera le fichier jpg : background-image: url(images/logo.jpg)

La conversion se fait au yarn build

Si elle doit se faire aussi en mode dev, il faudrait déplacer le code au dessus :

module.exports = {
	entry: entries,
	output: { ... },
	plugins: [
		// 1. Le générateur va ici pour fonctionner en DEV et en PROD
		new ImageMinimizerPlugin({
			generator: [
				{
					preset: 'webp',
					implementation: ImageMinimizerPlugin.imageminGenerate,
					options: {
						plugins: ['imagemin-webp'],
					},
				},
			],
		}),
	],
	optimization: {
		minimizer: [
			// 2. La minification classique reste ici, elle ne tournera qu'en PROD
			new ImageMinimizerPlugin({ ... }),
		],
	},
}

Note

Medium Risk
Build/asset pipeline changes can alter generated image formats and optimization output, potentially impacting runtime asset references and SVG rendering in production.

Overview
Switches the build pipeline’s default static image outputs from JPG to WebP (including login logo/default image generation) and adds production-time image minification via image-minimizer-webpack-plugin with updated SVGO configuration.

Updates CI to use Corepack + actions/setup-node@v4 with Yarn caching, removes obsolete assets/mixins (logo SVG and background-static mixin), and bumps lockfile deps (e.g., caniuse-lite).

Reviewed by Cursor Bugbot for commit eb5e0fa. Bugbot is set up for automated code reviews on this repo. Configure here.

Comment thread src/scss/02-tools/_m-background-static.scss Outdated
@francoistibo
Copy link
Copy Markdown
Contributor

forcer la transformation de toutes les images en WebP

@francoistibo
Copy link
Copy Markdown
Contributor

tester composer cs pour fix les warnings

cedric07 and others added 2 commits April 24, 2026 12:20
- Added imagemin-webp to package.json and updated yarn.lock.
- Configured WebP generation in webpack.common.js.
- Updated SCSS files to support WebP images.
- Removed obsolete logo SVG file.
Replace yarn set version berry with corepack enable to match
packageManager and avoid lockfile v8→v9 migration blocked in PRs.
Upgrade actions/setup-node to v4 with yarn cache.
Comment thread .github/workflows/node.js.yml Outdated
Comment thread config/webpack.common.js Outdated
firestar300 and others added 2 commits April 24, 2026 16:19
…ate instance

Move ImageMinimizerPlugin to plugins (generator + optional prod minifier) so
?as=webp works when minimization is off. Remove it from optimization.minimizer
to keep a single instance and avoid asset name conflicts. Minor shorthand for mode in dev/prod config.
@cedric07
Copy link
Copy Markdown
Contributor Author

cedric07 commented Apr 27, 2026

Vu avec @MarieComet

Ne fonctionne pas pour les appels en PHP. Cette solution native webpack ne semble pas être le bon compromis. Il faudrait voir pour une alternative différente.


TEST sur une autre branche pour pas poluer cette dernière :

PR : #491

  • Pour la partie PHP, un plugin JS pour convertir toutes les images jpg et png du dossier static en webp, et les mettre dans le dossier dist. Ce qui permet de pouvoir les appeler directement en PHP
  • Garder le fonctionnement actuel pour les CSS, car sinon la compilation casse (css-loader) si on appel l'image webp directement car elle n'existe pas encore

@firestar300 Bonne approche ou pas ? a dispo pour en discuter / tester

- Introduced WebpackStaticImagesPlugin to copy and convert static images to WebP format.
- Configured plugin in plugins.js with input and output directories, quality settings, and console output options.
firestar300 and others added 5 commits April 27, 2026 14:14
Improve build performance by skipping image processing when no files in the input directory have changed. The plugin now registers the input directory as a context dependency and checks modified files during subsequent builds to avoid redundant processing.
…lugin

Switch from Sharp to fs.copyFile for original assets to ensure they are preserved exactly as-is, maintaining source quality and metadata (EXIF/ICC). Sharp is now used exclusively for generating the WebP derivatives.
Add WebpackStaticImagesPlugin to handle static image processing
- Deleted unused JPEG images (default.jpg, logo.jpg) and replaced them with WebP versions (default.webp, logo.webp).
- Updated SCSS and Webpack configuration to reference the new WebP images.
- Removed imagemin-webp from package.json and yarn.lock as it is no longer needed.
- Generate default images in webp format by default
- Deleted WebpackStaticImagesPlugin to streamline image processing.
- Removed related configuration from plugins.js, eliminating the static image processing setup.
- This change simplifies the build process by relying on existing image handling methods.
@cedric07
Copy link
Copy Markdown
Contributor Author

cedric07 commented Apr 28, 2026

Pour faire suite au point entre TD :

  • Suppression du generator webpack webp
  • Transformation manuelle des jpg/png en webp dans le dossier static
  • Mise à jour du script qui génère les images par défaut pour qu'elles soient générées en webp
  • Suppression du script qui va transformer toutes les images jpg/png du dossier static en webp

TODO : A tester dans le cadre d'un projet, si ARI va bien aller charger les images webp générées, normalement oui au vu du json généré :

"square": [
      {
        "srcsets": [
          {
            "srcset": "",
            "size": "img-100-100"
          },
          {
            "srcset": "2x",
            "size": "img-200-200"
          },
          {
            "srcset": "2x",
            "size": "img-400-400"
          }
        ],
        "default_img": "default-400-400.webp",
        "img_base": "img-400-400"
      }
    ]

Comment thread config/webpack.dev.js
Comment thread config/webpack.prod.js
Comment thread config/plugins.js Outdated
@francoistibo
Copy link
Copy Markdown
Contributor

TODO : tester sur un projet récent (CD78 et/ou VORTEX)

@cedric07
Copy link
Copy Markdown
Contributor Author

TODO : tester sur un projet récent (CD78 et/ou VORTEX)

Testé sur vortex, RAS ça fonctionne bien, les images par défaut de ARI pointent bien vers le fichier webp

- Modified the SVGO configuration to align with SVGO 3 standards, replacing the old plugin format with the new preset-default structure.
- Adjusted the plugins list in plugins.js to ensure proper integration of the updated svgoconfig.
- This change enhances image optimization while maintaining compatibility with the latest SVGO version.
@cedric07
Copy link
Copy Markdown
Contributor Author

cedric07 commented Apr 29, 2026

Retour du bugbot sur svgo fixé, cela cassait la compilation au build : #486 (comment)

En regardant, en effet toute l'optimisation des svg n'était pas prise en compte car pas compatible avec la version 3 du package.

Il a fallut migrer la configuration du format svgo 2 à 3

https://github.com/BeAPI/beapi-frontend-framework/pull/486/changes#diff-49e5a23a192af92d5462330741246f3c8c015404d26c2a169dbf8cca24fc2b44

@firestar300

Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit eb5e0fa. Configure here.

Comment thread config/plugins.js
},
},
})
)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ImageMinimizerPlugin moved from optimization.minimizer to plugins array

Medium Severity

ImageMinimizerPlugin with its minimizer config was moved from optimization.minimizer (in webpack.common.js) to the plugins array (in plugins.js). The PR description itself shows the correct pattern: the minimizer belongs in optimization.minimizer and only the generator belongs in plugins. Placing it in the plugins array bypasses webpack's optimization pipeline, losing caching and deduplication benefits. Community reports indicate this can cause significantly slower builds and high CPU usage with larger image sets. The plugin needs to be in optimization.minimizer — either back in webpack.common.js or in webpack.prod.js.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit eb5e0fa. Configure here.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@firestar300 Le fait que t'as déplacé ça, le bugbot remonte ce soucis ? logique pour toi ?

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.

3 participants