0

我将 Gulp 与generator-gulp-angular一起使用。我在其他几个项目中使用相同的生成器并且工作得很好。我启动了一个新项目并决定使用 ES6 代替 CoffeeScript,这是我在其他项目中使用的。

不幸的是,当我做 a 时grunt serve,这是我在结尾看到的.tmp/serve/app/index.js

// Many lines of irrelevant code omitted

    module.exports = NavbarCtrl;

/***/ }
/******/ ]);

/***/ }       // <-- these lines aren't
/******/ ])   // <-- supposed to be there
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW

最后一个}也不])应该在那里。我收到一条错误消息,说明Uncaught SyntaxError: Unexpected token }它们何时存在。当我删除它们时,一切正常。

我什至不知道如何解决这个问题。可能有什么问题?

4

1 回答 1

0

在这里找到答案:https ://github.com/Swiip/generator-gulp-angular/issues/457

我不得不将scripts任务作为 dep 添加到scripts:watch. 之后它工作得很好。

于 2015-04-15T23:52:13.187 回答