Skip to content
Snippets Groups Projects
Commit e7915217 authored by syuilo's avatar syuilo
Browse files

Fix #38

parent ac2e820e
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ gulp.task('build:client', [
}
});
gulp.task('build:client:scripts', async (done) => {
gulp.task('build:client:scripts', () => new Promise(async (ok) => {
// Get commit info
const commit = await prominence(git).getLastCommit();
......@@ -214,8 +214,8 @@ gulp.task('build:client:scripts', async (done) => {
.pipe(gulp.dest('./built/web/resources/'));
});
es.merge(tasks).on('end', done);
});
es.merge(tasks).on('end', ok);
}));
gulp.task('build:client:styles', () =>
gulp.src('./src/web/app/**/*.styl')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment