Questions tagged «ajv»

3
Webpack-关键依赖项:依赖项的请求是一个表达式
导入request准系统webpack项目时,我收到三个警告消息。在GitHub上有一个重现该错误的最小示例(运行npm install和npm start)。 Critical dependency: the request of a dependency is an expression 我如何摆脱这个警告? 更多信息: Webpack尝试require静态解析呼叫以使捆绑最小。当库在require调用中使用变量或表达式时(例如require('' + 'nodent')在的这些行中ajv),Webpack无法静态解析它们并导入整个包。 我的理由是,这种动态导入在生产中是不希望的,并且最好保持代码无警告。那意味着我想要任何解决问题的解决方案。例如: 手动配置webpack导入所需的库,并防止发生警告。 将hack.js文件添加到我的项目中,该文件以某种方式覆盖了require调用。 升级我的库。ajv-5.0.1-beta.3有一个使警告静音的修复程序。但是,如果要使用它,则必须等到它发布后再发布har-validator并request发布后续更新。如果有一种方法可以强制har-validator使用Beta版ajv,则可以解决我的问题。 其他
81 webpack  request  ajv 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.