mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
Fix #38
This commit is contained in:
parent
a5c1b2ebc0
commit
474a94b48e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
// Get commit info
|
||||||
const commit = await prominence(git).getLastCommit();
|
const commit = await prominence(git).getLastCommit();
|
||||||
|
|
||||||
|
@ -214,8 +214,8 @@ gulp.task('build:client:scripts', async (done) => {
|
||||||
.pipe(gulp.dest('./built/web/resources/'));
|
.pipe(gulp.dest('./built/web/resources/'));
|
||||||
});
|
});
|
||||||
|
|
||||||
es.merge(tasks).on('end', done);
|
es.merge(tasks).on('end', ok);
|
||||||
});
|
}));
|
||||||
|
|
||||||
gulp.task('build:client:styles', () =>
|
gulp.task('build:client:styles', () =>
|
||||||
gulp.src('./src/web/app/**/*.styl')
|
gulp.src('./src/web/app/**/*.styl')
|
||||||
|
|
Loading…
Reference in a new issue