pacify eslint

This commit is contained in:
Bryan Housel
2019-11-07 17:16:03 -05:00
parent 5da962a694
commit 05b3d023ce
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -22,6 +22,6 @@ function buildAll() {
_currBuild = null;
process.exit(1);
});
};
}
module.exports = buildAll;
+3 -3
View File
@@ -31,7 +31,7 @@ function buildCSS() {
_currBuild = null;
process.exit(1);
});
};
}
function doGlob(pattern) {
@@ -41,7 +41,7 @@ function doGlob(pattern) {
resolve(files);
});
});
};
}
function doConcat(files, output) {
return new Promise((resolve, reject) => {
@@ -50,7 +50,7 @@ function doConcat(files, output) {
resolve();
});
});
};
}
module.exports = buildCSS;
+1 -1
View File
@@ -120,7 +120,7 @@ function buildData() {
_currBuild = null;
process.exit(1);
});
};
}
function read(f) {
+2 -2
View File
@@ -36,7 +36,7 @@ function buildSrc() {
_currBuild = null;
process.exit(1);
});
};
}
function buildBundle() {
@@ -85,7 +85,7 @@ function buildBundle() {
});
return prom;
};
}
function onWarn(warning, warn) {
+1 -1
View File
@@ -48,4 +48,4 @@ function startServer() {
server.start(() => {
console.log(colors.yellow('Listening on ' + server.port));
});
};
}