我收到此错误
# weights: 9 (4 variable)
initial value 56.891315
final value 56.637716
converged
Call:
multinom(formula = y ~ x, weights = wts)
Coefficients:
(Intercept) x
B -0.09823625 -0.1779220
C -0.06923607 -0.1951617
Residual Deviance: 113.2754
AIC: 121.2754
(注意:所有类型的babel-core错误都会导致错误更长,但我认为这是因为某些内容无法正确加载Velocity)
我的Webpack别名:
ERROR in ./bower_components/velocity/velocity.js
Module build failed: TypeError: /Users/dave/project/bower_components/velocity/velocity.js: Cannot read property 'length' of undefined
我的javascript导入:
Velocity: resolveBowerPath('/velocity/velocity.js')
当我在终端中纳入该路径(/Users/dave/project/bower_components/velocity/velocity.js)时,该文件很好,所以它不是一个糟糕的导入URL,我能够导入其他Bower项目很好,这是唯一一个不会加载的。有什么我做错了吗?
注意:当我尝试使用 import Velocity from 'Velocity';
来填充Velocity时,我收到了同样的错误,所以我认为这不是webpack的问题......