Skip to content

Commit

Permalink
Tools: Fixed ES5 in scripts task.
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 committed Nov 28, 2024
1 parent 3eaa5b5 commit 794a21a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tools/gulptasks/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,16 @@ function task() {
shouldRun() ||
processLib.isRunning('scripts_incomplete')
) {
fsLib.deleteDirectory('code', true);

processLib.isRunning('scripts_incomplete', true, true);

fsLib.deleteDirectory('code', true);

gulp.series(
'scripts-ts',
'scripts-css',
argv.assembler ? 'scripts-js' : 'scripts-webpack'
'scripts-ts',
'scripts-es5',
argv.assembler ? 'scripts-js' : 'scripts-webpack',
'scripts-code'
)(
function (error) {

Expand Down

0 comments on commit 794a21a

Please sign in to comment.