在运行grunt watch时 - 它会在运行快速服务器任务和中止时抛出警告。
警告如下:
Running "express-server:devServer" (express-server) task
Warning: Object function createServer() {
function app(req, res, next){ app.handle(req, res, next); }
merge(app, proto);
merge(app, EventEmitter.prototype);
app.route = '/';
app.stack = [];
return app;
} has no method 'static' Use --force to continue.
Aborted due to warnings.
答案 0 :(得分:0)
我有类似的问题,解决方案是将grunt-contrib-connect降级为版本0.10.1
所以编辑你的package.json:
"grunt-contrib-connect": "0.10.1",
然后运行
npm update
在项目目录中。
我认为他们在v11中更改了中间件功能参数。我使用AngularJS生成器v0.12.1
中的Gruntfile.js