fixing dev env issues

This commit is contained in:
Leamsi Escribano 2021-01-13 14:21:43 -05:00
parent a742b0e8f0
commit 5ea861b764
2 changed files with 3 additions and 7 deletions

View File

@ -15,7 +15,7 @@ console.log('Building Pixel Editor');
function copy_images(){
gulp.src('./images/')
gulp.src('./images/*.png')
.pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
}

View File

@ -10,13 +10,9 @@ const PORT = process.argv[3] || 3000;
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, BUILDDIR, 'index.htm'), {}, function (err) {
if(err){
console.log('error sending file',err);
console.log('error sending file', err);
} else {
setTimeout(()=>{
console.log('closing server');
server.close();
process.exit();
},1000*10);
console.log("Server: Successfully served index.html");
}
});
});