featdd / dpn_glossary

Glossary extension for TYPO3
http://typo3.org/extensions/repository/view/dpn_glossary
GNU General Public License v2.0
20 stars 30 forks source link

Fix the Webpack5 deprecation warning #203

Closed webdiscus closed 1 year ago

webdiscus commented 1 year ago

Hello,

this project uses the outdated webpack-fix-style-only-entries plugin that is incompatible with Webpack 5.

Using npm run build:production appear the deprecation warnings:

webpack-fix-style-only-entries:
(node:18462) [DEP_WEBPACK_CHUNK_ENTRY_MODULE] DeprecationWarning: Chunk.entryModule: Use new ChunkGraph API
(node:18462) [DEP_WEBPACK_MODULE_INDEX] DeprecationWarning: Module.index: Use new ModuleGraph API
(node:18462) [DEP_WEBPACK_DEPRECATION_ARRAY_TO_SET] DeprecationWarning: chunk.files was changed from Array to Set (using Array method 'filter' is deprecated)

The author of the webpack-fix-style-only-entries plugin recommends using the webpack-remove-empty-scripts plugin for Webpack 5.

This PR just replaces the outdated plugin with the actual version.

featdd commented 1 year ago

Hi @webdiscus,

thanks haven't noticed this yet, I merged this with adjustments here: 52c038b4b194715be9c37a4a2a701a7152c0765f

Greetings Daniel