Chunk.entrypoints: Verwenden Sie stattdessen Chunks.groupsIterable und filtern Sie nach der Instanz von Entrypoint

91

Beim Versuch, meine App zu starten, werden folgende Fehler angezeigt ...

> css-modules@1.0.0 start /Users/johnnynolan/Repos/css-modules

webpack && open index.html

(node:5706) DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead
/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Chunk.js:802
        throw new Error(
        ^

Error: Chunk.entrypoints: Use Chunks.groupsIterable and filter by instanceof Entrypoint instead
    at Chunk.get (/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Chunk.js:802:9)
    at /Users/johnnynolan/Repos/css-modules/node_modules/extract-text-webpack-plugin/dist/index.js:176:48
    at Array.forEach (<anonymous>)
    at /Users/johnnynolan/Repos/css-modules/node_modules/extract-text-webpack-plugin/dist/index.js:171:18
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/johnnynolan/Repos/css-modules/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:7:1)
    at AsyncSeriesHook.lazyCompileHook [as _callAsync] (/Users/johnnynolan/Repos/css-modules/node_modules/tapable/lib/Hook.js:35:21)
    at Compilation.seal (/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Compilation.js:1203:27)
    at hooks.make.callAsync.err (/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Compiler.js:547:17)
    at _err0 (eval at create (/Users/johnnynolan/Repos/css-modules/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:11:1)
    at _addModuleChain (/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Compilation.js:1054:12)
    at processModuleDependencies.err (/Users/johnnynolan/Repos/css-modules/node_modules/webpack/lib/Compilation.js:980:9)
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickCallback (internal/process/next_tick.js:180:9)
    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! css-modules@1.0.0 start: `webpack && open index.html`
    npm ERR! Exit status 1
    npm ERR! 
    npm ERR! Failed at the css-modules@1.0.0 start script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
    npm ERR! A complete log of this run can be found in:
    npm ERR!     /Users/johnnynolan/.npm/_logs/2018-07-17T14_04_42_021Z-debug.log
Drostan
quelle
CSS-Module werfen möglicherweise etwas. Veröffentlichen Sie den gesamten Stack-Trace und Ihre Webpack-Konfiguration
PlayMa256
Ich schlage vor, Sie bearbeiten Ihre Frage zu etwas anderem wie "Wie kann ich das lösen?". statt "Hat das schon mal jemand gesehen?"
Amy
3
Extract-Text-Plugin funktioniert nicht mit Webpack v4
IVO GELOV

Antworten:

186
npm install extract-text-webpack-plugin@next

Das hat den Trick für mich getan!

Steven McConnon
quelle
1
Das @next brachte mir das "^ 4.0.0-beta.0", genau das, was ich brauchte. Danke dir.
Paula Fleck
82

Die meisten Kommentare hier https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/701 weisen darauf hin extract-text-plugin, sie mini-css-extract-pluginstattdessen zu ändern .

Aus dem Github-Repo von extract-text-webpack-plugin https://github.com/webpack-contrib/extract-text-webpack-plugin

⚠️ Seit Webpack v4 sollte das Extract-Text-Webpack-Plugin nicht für CSS verwendet werden. Verwenden Sie stattdessen das Mini-CSS-Extrakt-Plugin.

Gehen Sie zu mini-css-extract-plugin, wie man swap / upgraden https://github.com/webpack-contrib/mini-css-extract-plugin

Rikin
quelle
20

Ja, ich habe das gleiche Problem mit dem Webpack 4.10.2. Das Problem ist behoben, nachdem ich das getauscht extract-css-chunks-webpack-pluginhabe mini-css-extract-plugin.

Hier sind die Änderungen an der Webpack-Konfiguration:

-const ExtractCssChunks = require('extract-css-chunks-webpack-plugin')
+const MiniCssExtractPlugin = require("mini-css-extract-plugin");

module.exports = {
  name: 'client',
  target: 'web',
  module: {
    rules: [
      {
        test: /\.css$/,
-       use: ExtractCssChunks.extract({
-         use: 'css-loader'
-       })
+       use: [
+         {
+           loader: MiniCssExtractPlugin.loader,
+         },
+         "css-loader"
+       ]
      }
    ]
  },
// 
// other config........
//
   plugins: [
-    new ExtractCssChunks(),
+    new MiniCssExtractPlugin({
+        filename: `components/[name].css`
+    }),
     //
     // other config........
     //
   ]

Hoffe es kann helfen.

Eric Tan
quelle
7

Ich hatte den Fehler mit der Version 4.0.0-beta.0von behoben extract-text-webpack-plugin.

TurboHZW
quelle
4
Das Update auf 4.0.0-beta.0 hat auch mein Problem
behoben
VS Code hatte keine automatische Vervollständigung für 4.x. Vielen Dank, dass Sie mir eine weitere Google-Suche mit einer expliziten Version erspart haben.
steven87vt
Welcher Weg ist das?
Grald