-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js.bak
255 lines (211 loc) · 5.64 KB
/
gulpfile.js.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
var EventEmitter = require('events').EventEmitter;
var event = new EventEmitter();
var gulp = require('gulp');
var runSequence = require('gulp-run-sequence');
var git = require('gulp-git');
var g_WatchFlag=true;
var g_WatchSingle=true;
var fileIndex=0;
/*var fileSrc="E:/c.txt";*/
/*var fileSrcS=[
"E:/m.txt",
"E:/n.txt"
];*/
//var fileSrcS=[
var fileSrc=[
"*",
"!node_modules",
"!.svn" ,
"!app/build",
"!*.iml",
"!.gradle",
"!local.properties",
"!.idea/workspace.xml",
"!.idea/libraries",
"!.DS_Store",
"!build",
"!captures"
];
//var fileSrc= fileSrcS[0];
var event = new EventEmitter();
gulp.task('init', function(){
git.init(function (err) {
if (err)
{
throw err;
}
else
{
console.log(" push ok ok ok ok ok");
}
});
});
gulp.task('add', function(){
return gulp.src(fileSrc)
.pipe(git.add());
});
gulp.task('commit', function(){
return gulp.src(fileSrc)
.pipe(git.commit('gulp commit'));
});
gulp.task('removeremote', function(){
git.removeRemote('origin', function (err) {
if (err) throw err;
});
});
gulp.task('addremote', function(){
git.addRemote('origin', 'https://github.com/garyyan/study_doc.git', function (err) {
if (err) throw err;
});
});
gulp.task('push', function(){
git.push('origin', 'master', function (err) {
if (err) throw err;
});
});
gulp.task('pull', function(){
git.pull('origin', 'master', function (err) {
if (err) throw err;
});
});
gulp.task('pull_rebase', function(){
git.pull('origin', 'master', {args: '--rebase'}, function (err) {
if (err) throw err;
});
});
gulp.task('checkout', function(){
git.checkout('master', function (err) {
if (err) throw err;
});
});
gulp.task('reset', function(){
git.reset('origin', function (err) {
if (err) throw err;
});
});
//Run git fetch
// Fetch refs from origin
gulp.task('fetch', function(){
git.fetch('origin', '', function (err) {
if (err) throw err;
});
});
//============for combine the task================
gulp.task('add_2', function(cb){
//cb(err);// 如果 err 不是 null 和 undefined,流程会被结束掉,下一任务不会被执行
return gulp.src(fileSrc)
.pipe(git.add());
});
// 标注一个依赖,依赖的任务必须在这个任务开始之前被完成
//gulp.task('commit_2', function(cb){
gulp.task('commit_2', ['add_2'], function(cb){
// cb(err);// 如果 err 不是 null 和 undefined,流程会被结束掉,下一任务不会被执行
return gulp.src(fileSrc)
.pipe(git.commit('gulp commit'));
});
// 标注一个依赖,依赖的任务必须在这个任务开始之前被完成
//gulp.task('push_2', function(){
gulp.task('push_2',['commit_2'], function(cb){
// cb(err);// 如果 err 不是 null 和 undefined,流程会被结束掉,下一任务不会被执行
git.push('origin', 'master', function (err) {
if (err)
{
throw err;
return
}
else
{
cb();
}
});
});
gulp.task('push2_complete',['push_2'], function(){
// cb(err);// 如果 err 不是 null 和 undefined,流程会被结束掉,下一任务不会被执行
console.log("push_complete ok ok ok ok");
event.emit('one_submit_complete');
});
//gulp.task('default', ['add_2', 'commit_2', 'push_2']);
/*gulp.task('default',function(cb){
return gulp.src(fileSrc)
.pipe(git.add())
.pipe(git.commit('gulp commit'))
.pipe(git.push('origin', 'master'));
// return stream;
});*/
function taskDone(fileIndex)
{
event.emit('one_submit_complete');
}
gulp.task('push-one', ['add_2', 'commit_2', 'push_2','push2_complete']);
/*gulp.task('default', function(){
//var fileIndex=0;
//for (var fileIndex in fileSrcS)
fileSrcS.forEach(function(e)
{
fileSrc=e;//fileSrcS[fileIndex];
console.log(fileSrc+" start");
runSequence(
'add_2',
'commit_2',
'push_2',
taskDone
);
console.log(fileSrc+" end");
})
});
*/
/*gulp.task('default',['push-one'] ,function(){
//fileSrcS.forEach(function(e)
//event.emit('one_submit_complete');
console.log(fileSrc+" start");
// runSequence('push-one',taskDone);
console.log(fileSrc+" end");
//);
});*/
gulp.task('push-all', ['add_2', 'commit_2', 'push_2']);
gulp.task('default',['push-all'] ,function(){
console.log(" push all start");
//);
});
/*gulp.task('default', function(){
console.log("default task run");
//);
});*/
event.on('one_submit_complete', function() {
/* setTimeout(function() {
event.emit('wait_complete_delay');
}, 5000);
*/
console.log('one_submit_complete 事件触发');
console.log(fileSrc+" task done");
if(fileIndex+1<fileSrcS.length)
{
fileIndex++;
fileSrc=fileSrcS[fileIndex];
console.log(fileSrc+" start");
runSequence('push-one',taskDone);
console.log(fileSrc+" end");
}
else
{
console.log("all task complete");
}
});
event.on('wait_complete_delay', function(){
console.log('one_submit_complete 事件触发');
console.log(fileSrc+" task done");
if(fileIndex+1<fileSrcS.length)
{
fileIndex++;
fileSrc=fileSrcS[fileIndex];
console.log(fileSrc+" start");
runSequence('push-one',taskDone);
console.log(fileSrc+" end");
}
else
{
console.log("all task complete");
}
});