当我运行“成员服务”时,我得到了以下非常混乱的信息
[BABEL] Note: The code generator has deoptimised the styling of "ember-blog/bower_components/moment/min/locales.js" as it exceeds the max of "100KB"
它还引发以下错误:
SyntaxError: ember-blog/bower_components/moment/templates/locale-header.js: Unexpected token (6:0)
4 | factory(global.moment)
5 | }(this, function (moment) { 'use strict';
> 6 |
我曾经安装了这个即时程序包,但是现在它已经被删除了。通过对ls -la文件系统的检查,可以发现没有名为“that”的文件夹,所以是如何找到文件的?
我尝试删除“tmp”目录中的文件,但这并没有解决问题。
发布于 2015-08-22 17:52:36
好的,很明显,它报告的文件是在ember-blog/bower_components/moment/templates/locale-header.js
中,但文件实际上是在ember-blog/app/bower_components/moment/templates/locale-header.js
中。
多诺,为什么它截断了应用程序的部分,但这就是为什么我找不到文件,使我悲伤。
https://stackoverflow.com/questions/32158963
复制相似问题