Chunk.entrypoints: utilizza Chunks.groupsIterable e filtra invece per istanza di Entrypoint


91

Vedo i seguenti errori quando provo ad avviare la mia app ...

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

webpack && apri 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

css-modules potrebbe lanciare qualcosa. Pubblica l'intera traccia dello stack e la configurazione del tuo webpack
PlayMa256

Ti suggerisco di modificare la tua domanda in qualcosa di più simile a "Come posso risolvere questo problema?" invece di "Qualcuno l'ha visto prima?"
Amy

3
extract-text-plugin non funziona con Webpack v4
IVO GELOV

Risposte:


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

Questo ha fatto il trucco per me!


1
@Next mi ha portato "^ 4.0.0-beta.0", esattamente quello di cui avevo bisogno. Grazie.
Paula Fleck il

82

La maggior parte dei commenti qui https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/701 punta a extract-text-plugincambiarlo mini-css-extract-plugininvece.

Dal repository Github di extract-text-webpack-plugin https://github.com/webpack-contrib/extract-text-webpack-plugin

⚠️ Dal momento che webpack v4 il plugin extract-text-webpack-non dovrebbe essere usato per css. Usa invece mini-css-extract-plugin.

Vai a mini-css-extract-plugincome scambiarlo / aggiornarlo https://github.com/webpack-contrib/mini-css-extract-plugin


21

Sì, ho avuto lo stesso problema con webpack 4.10.2. Il problema è stato risolto dopo aver cambiato il file extract-css-chunks-webpack-pluginin mini-css-extract-plugin.

Ecco le modifiche alla configurazione del webpack:

-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........
     //
   ]

Spero che possa aiutare.


Ha aiutato più delle risposte di cui sopra in effetti. Grazie.
Paolo Stefan il

7

Avevo corretto il bug utilizzando la versione 4.0.0-beta.0di extract-text-webpack-plugin.


4
Anche l'aggiornamento a 4.0.0-beta.0 ha risolto il mio problema
JillAndMe

VS Code non aveva un completamento automatico per 4.x quindi grazie per avermi salvato un'altra ricerca su Google con una versione esplicita.
steven87vt

che sentiero è quello?
Grald
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.