forked from MisumiRize/gulp-middleman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (116 loc) · 3.33 KB
/
index.js
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
(function() {
var Middleman, PLUGIN_NAME, gutil, path, spawn, which;
spawn = require("child_process").spawn;
which = require("which").sync;
gutil = require("gulp-util");
path = require("path");
PLUGIN_NAME = "gulp-middleman";
Middleman = (function() {
function Middleman(options) {
this.options = options;
}
Middleman.prototype.getCommand = function() {
if (this.options.useBundler) {
return "bundle";
} else {
return "middleman";
}
};
Middleman.prototype.getArguments = function(subcommand) {
var args;
args = this.options.useBundler ? ["exec", "middleman"] : [];
args.push(subcommand);
if (this.options.verbose) {
args.push("--verbose");
}
args.concat(subcommand === "server" ? this.getServerOptions() : this.getOptions());
return args;
};
Middleman.prototype.getServerOptions = function() {
var opts;
opts = [];
if (this.options.environment) {
opts.push("--environment=" + this.options.environment);
}
if (this.options.host) {
opts.push("--host=" + this.options.host);
}
if (this.options.port) {
opts.push("--port=" + this.options.port);
}
return opts;
};
Middleman.prototype.getOptions = function() {
var opts;
opts = [];
if (this.options.clean) {
opts.push("--clean");
}
if (this.options.glob) {
opts.push("--glob=" + this.options.glob);
}
return opts;
};
return Middleman;
})();
module.exports = {
server: function(options) {
var child, cmd, err, middleman, pathSeparatorRe;
if (options == null) {
options = {};
}
middleman = new Middleman(options);
cmd = middleman.getCommand();
pathSeparatorRe = /[\\\/]/g;
try {
if (!pathSeparatorRe.test(cmd)) {
cmd = which(cmd);
} else {
}
cmd = cmd.replace(pathSeparatorRe, path.sep);
} catch (_error) {
err = _error;
console.log(err);
}
console.log(cmd, middleman.getArguments("server"));
child = spawn(cmd, middleman.getArguments("server"));
child.stdout.pipe(process.stdout);
child.stderr.pipe(process.stderr);
process.stdin.on("end", function() {
return child.stdin.end();
});
return child.stdout.on("end", function() {
return process.stdin.end();
});
},
build: function(options) {
var child, cmd, err, middleman, pathSeparatorRe;
if (options == null) {
options = {};
}
middleman = new Middleman(options);
cmd = middleman.getCommand();
pathSeparatorRe = /[\\\/]/g;
try {
if (!pathSeparatorRe.test(cmd)) {
cmd = which(cmd);
} else {
}
cmd = cmd.replace(pathSeparatorRe, path.sep);
} catch (_error) {
err = _error;
console.log(err);
}
console.log(cmd, middleman.getArguments("build"));
child = spawn(cmd, middleman.getArguments("build"));
child.stdout.pipe(process.stdout);
child.stderr.pipe(process.stderr);
process.stdin.on("end", function() {
return child.stdin.end();
});
return child.stdout.on("end", function() {
return process.stdin.end();
});
}
};
}).call(this);