Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用 Javascript MVC 的窃取/buildjs 进行构建时,envJS 默默地无法压缩和检查 JavaScript 文件是否有错误。
我阅读了 envJS 的文档,发现如果在某些情况下您尝试构建空的 .js 文件,envJS 将会失败。
显然是在我的情况下,后来我创建了一些空的 .js 文件。
我需要一种方法来在构建之前添加对空 .js 和 .ejs 文件的检查。
运行steal / buildjs时检查空.js和.ejs的最有效方法是什么?
我会使用find:
find . -type f \( -name *.js -o -name *.ejs \) -size 0 -print
-print确定的-delete时候再换。
-print
-delete