我收到了这个警告
从(node:4692)弃用警告:
Chunk.modules
已弃用。请改用Chunk.getNumberOfModules/mapModules/forEachModule/containsModule
webpack v2.6.1
升级到v3
后。在v2xx
,工作正常但v3
给了我这个错误。
我不知道哪个包导致了这个问题。任何参考或链接可能会有所帮助。
我的package.json文件:
{
"name": "app",
"version": "1.0.0",
"description": "app",
"scripts": {
"start": "webpack-dev-server --hot --inline --progress --colors --port 2000"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "~4.2.4",
"@angular/common": "~4.2.4",
"@angular/compiler": "~4.2.4",
"@angular/core": "~4.2.4",
"@angular/forms": "~4.2.4",
"@angular/http": "~4.2.4",
"@angular/material": "~2.0.0-beta.7",
"@angular/platform-browser": "~4.2.4",
"@angular/platform-browser-dynamic": "~4.2.4",
"@angular/router": "~4.2.4",
"core-js": "~2.4.1",
"hammerjs": "~2.0.8",
"rxjs": "~5.4.1",
"zone.js": "~0.8.12"
},
"devDependencies": {
"@angular/compiler-cli": "~4.2.4",
"@angular/platform-server": "~4.2.4",
"@ngtools/webpack": "~1.4.1",
"@types/jquery": "^2.0.43",
"@types/node": "~8.0.0",
"@types/typeahead": "~0.11.29",
"angular2-router-loader": "~0.3.5",
"angular2-template-loader": "~0.6.2",
"awesome-typescript-loader": "~3.1.3",
"chunk-manifest-webpack2-plugin": "~1.0.1",
"compression-webpack-plugin": "~0.4.0",
"css-loader": "~0.14.0",
"extract-text-webpack-plugin": "^3.0.0-beta.3",
"file-loader": "~0.11.2",
"html-loader": "~0.4.5",
"html-webpack-plugin": "~2.28.0",
"imports-loader": "^0.7.1",
"moment": "^2.18.1",
"null-loader": "~0.1.1",
"raw-loader": "~0.5.1",
"rimraf": "~2.6.1",
"split-by-name-webpack-plugin": "~0.0.3",
"style-loader": "~0.18.2",
"tslint": "~5.4.3",
"typescript": "~2.3.4",
"uglify-js": "^3.0.19",
"uglify-loader": "~2.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "~3.0.0",
"webpack-bundle-analyzer": "~2.8.2",
"webpack-chunk-hash": "~0.4.0",
"webpack-dev-server": "~2.5.0",
"webpack-merge": "~4.1.0",
"webpack-uglify-parallel": "~0.1.3"
}
}
答案 0 :(得分:6)
我在extract-text-webpack-plugin 3.0.0-beta.3
收到了已弃用的警告。在我将extract-text-webpack-plugin更新到v3.0.2后跟此链接DeprecationWarning Chunk.modules in Webpack 3.x之后,警告消失了,Webpack v3xx正在运行,没有任何错误。
<强>的WebPack 强>
v3.8.1
<强>提取物的文本的WebPack-插件强>
v3.0.2
答案 1 :(得分:3)
看起来是extract-text-webpack-plugin
,请在此处查看相关问题:https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/529
答案 2 :(得分:2)
交换&#34; webpack-md5-hash&#34;:&#34; 0.0.5&#34;,
到
&#34; webpack-chunk-hash&#34;:&#34; 0.5.0&#34;
修正了我的警告。新包装是旧包装的一个分支。