H5BP构建脚本图像优化
当我运行构建脚本时,一切正常,但由于图像数量较多,构建大约需要 5 分钟。构建脚本是否应该检查自上次构建以来图像是否被修改,如果没有则保留它们?如果不是,是否有一种简单的方法可以从构建中排除文件夹?
我收到的唯一警告是“将来修改”警告。
When i run the build script everything works fine but because of the amount of images it takes about 5 minutes to build. Isn't the build script supposed to check if the images are modified since the last build and let them be if they aren't? If it isn't, is there an easy way to exclude folders from the build?
The only warning i get is a "modified in the future"-warning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的解决方法是使用
ant text
而不是ant build
或ant minify
等。不过还是很烦人。A simple workaround is doing
ant text
instead ofant build
orant minify
or whatever. Still irritating though.