加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sync.js 1016 Bytes
一键复制 编辑 原始数据 按行查看 历史
笔心 提交于 2016-09-30 06:06 . u
// 将最新文件同步到项目主页中
var Client = require('ftp');
// ftp的配置信息,包括host,user,password
var syncConfig = require('./sync-config');
var c = new Client();
var task=0;
c.on('ready', function () {
console.log('start sync');
c.put('dist/datepicker.min.css', '/demo/datepicker/dist/datepicker.min.css', function (err) {
if (err) throw err;
console.log('mdeditor.min.css sync success');
task++;
end();
});
c.put('dist/datepicker.min.js', '/demo/datepicker/dist/datepicker.min.js', function (err) {
if (err) throw err;
console.log('mdeditor.min.js sync success');
task++;
end();
});
c.put('index.html', '/demo/datepicker/index.html', function (err) {
if (err) throw err;
console.log('index.html sync success');
task++;
end();
});
});
function end() {
if(task==3){
c.end();
}
}
c.connect(syncConfig);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化