We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在发布的过程中,远程发布并不一定是内网环境,因此批量发布的过程中,全量发布有如下问题:
因此,可否增加一个 增量发布?已经发布过的,如果没有变化,可以不上传呢?
The text was updated successfully, but these errors were encountered:
目前watch模式已经是增量发布了。
如果你想做到走缓存的文件跳过上传的话,完全可以在插件外实现。如:
fis.match('*', { deploy: [ function(options, modified, total, next) { // 对 modified 进行修改,过滤。 var i = modified.length - 1; var file; while ((file = modified[i--])) { if (file._fromCache) { modified.splice(i + 1, 1); } } next(); } fis.plugin('http-push', { // ... }) ] })
Sorry, something went wrong.
No branches or pull requests
在发布的过程中,远程发布并不一定是内网环境,因此批量发布的过程中,全量发布有如下问题:
因此,可否增加一个 增量发布?已经发布过的,如果没有变化,可以不上传呢?
The text was updated successfully, but these errors were encountered: