From d39484998a7cc756038cf903a9ceb336169d3ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Sun, 9 Mar 2025 02:41:29 +0100 Subject: [PATCH] [Webpack-Encore] Remove "ux" alias MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently if someones types "composer req ux" after a base symfony install ... he ends up with webpack encore. Worse, the same thing happens if user installed symfony "--webapp", as they will end up with both AssetMapper and Webpack Encore installed. Finally, and the initial reason I checked this: we will soon need the "ux" alias for the UX Bundle. cc @Kocal PS: not sure if this would require a release to be effective... and hope it does not 😅 --- symfony/webpack-encore-bundle/2.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/webpack-encore-bundle/2.0/manifest.json b/symfony/webpack-encore-bundle/2.0/manifest.json index 6c2c5429..16f8dcd4 100644 --- a/symfony/webpack-encore-bundle/2.0/manifest.json +++ b/symfony/webpack-encore-bundle/2.0/manifest.json @@ -8,7 +8,7 @@ "package.json": "package.json", "webpack.config.js": "webpack.config.js" }, - "aliases": ["ux", "encore", "webpack", "webpack-encore"], + "aliases": ["encore", "webpack", "webpack-encore"], "gitignore": [ "/node_modules/", "/%PUBLIC_DIR%/build/",