UNPKG
wr
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
watch files and run a command when they change
github.com/pmuellr/wr
pmuellr/wr
wr
/
lib
/
wr.js
13 lines
(9 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// Generated by CoffeeScript 1.6.3
var
FileSet
;
require
(
"colors"
);
FileSet
=
require
(
'./FileSet'
);
module
.
exports
.
run
=
function
(
cmd, files, opts
) {
var
fileSet; fileSet =
new
FileSet
(files, opts);
return
fileSet.
whenChangedRun
(cmd); };