javascript - "CommonsChunkPlugin now only takes a single argument.。。。。
問題描述
Error: Deprecation notice: CommonsChunkPlugin now only takes a single argument. Either an optionsobject *or* the name of the chunk.Example: if your old code looked like this:new webpack.optimize.CommonsChunkPlugin(’vendor’, ’vendor.bundle.js’)You would change it to:new webpack.optimize.CommonsChunkPlugin({ name: ’vendor’, filename: ’vendor.bundle.js’ })The available options are:name: stringnames: string[]filename: stringminChunks: numberchunks: string[]children: booleanasync: booleanminSize: number at new CommonsChunkPlugin (E:heShengWebmanta-webnode_moduleswebpackliboptimizeCommonsChunkPlugin.js:10:10) at Object.<anonymous> (E:heShengWebmanta-webwebpackbase.config.js:82:9) at Module._compile (module.js:541:32) at Object.Module._extensions..js (module.js:550:10) at Module.load (module.js:458:32) at tryModuleLoad (module.js:417:12) at Function.Module._load (module.js:409:3) at Module.require (module.js:468:17) at require (internal/module.js:20:19) at Object.<anonymous> (E:heShengWebmanta-webwebpackwebpack.build.config.js:5:18)npm ERR! Windows_NT 6.3.9600npm ERR! argv 'E:SoftwareNodejsnode.exe' 'E:SoftwareNodejsnode_globalnode_modulesnpmbinnpm-cli.js' 'run' 'build'npm ERR! node v6.3.0npm ERR! npm v3.8.0npm ERR! code ELIFECYCLEnpm ERR! mantaweb@1.0.0 build: `webpack --config webpack/webpack.build.config.js --progress --colors`npm ERR! Exit status 1npm ERR!npm ERR! Failed at the mantaweb@1.0.0 build script ’webpack --config webpack/webpack.build.config.js --progress --colors’.npm ERR! Make sure you have the latest version of node.js and npm installed.npm ERR! If you do, this is most likely a problem with the mantaweb package,npm ERR! not with npm itself.npm ERR! Tell the author that this fails on your system:npm ERR! webpack --config webpack/webpack.build.config.js --progress --colorsnpm ERR! You can get information on how to open an issue for this project with:npm ERR! npm bugs mantawebnpm ERR! Or if that isn’t available, you can get their info via:npm ERR! npm owner ls mantawebnpm ERR! There is likely additional logging output above.npm ERR! Please include the following file with any support request:npm ERR! E:heShengWebmanta-webnpm-debug.log
的確我的CommonsChunkPlugin配置是他報(bào)的錯(cuò)的樣子,但是我在公司的電腦上這樣配不會(huì)錯(cuò),怎么回到家里自己的電腦就會(huì)報(bào)這個(gè)錯(cuò)了,改怎么解決呢(我不太想改這個(gè)配置的)?
問題解答
回答1:不要使用webpack2.x,公司使用的配置應(yīng)該是webpack1.x,2.x的配置和1.x不一樣,你看下你電腦的webpack版本吧,看是不是2.x的
回答2:CommonsChunkPlugin 版本更新了,不再支持原來的傳參方式 而且應(yīng)該很久以前的事了...
而且報(bào)錯(cuò)信息里都給出改法了:
new webpack.optimize.CommonsChunkPlugin({ name: ’vendor’, filename: ’vendor.bundle.js’, minChunks: Infinity })回答3:
換一個(gè)版本的庫就好了,你公司上用什么版本,這里就用什么版本就好了。
回答4:要么把webpack更新到2.x,要么就回到webpack1.x。因?yàn)槟愎居玫睦习姹荆哉f為了保持一致性。建議你改成1.x,這樣也方便你的代碼一致性。
相關(guān)文章:
1. javascript - 回調(diào)函數(shù)和閉包的關(guān)系2. javascript - 在top.jsp點(diǎn)擊退出按鈕后,right.jsp進(jìn)行頁面跳轉(zhuǎn),跳轉(zhuǎn)到login.jsp3. android - 哪位大神知道java后臺的api接口的對象傳到前端后輸入日期報(bào)錯(cuò),是什么情況?求大神指點(diǎn)4. node.js - koa2 如何獲取參數(shù)?5. javascript - 下面的這段算法代碼求解釋6. css3 - 在sublime text里, 如何讓emmet生成的帶前綴css屬性垂直對齊?7. mac連接阿里云docker集群,已經(jīng)卡了2天了,求問?8. javascript - js 有什么優(yōu)雅的辦法實(shí)現(xiàn)在同時(shí)打開的兩個(gè)標(biāo)簽頁間相互通信?9. java - spring-data Jpa 不需要執(zhí)行save 語句,Set字段就可以自動(dòng)執(zhí)行保存的方法?求解10. [前端求職必看]前端開發(fā)面試題與答案精選_擴(kuò)展問題
