Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
fix: throw error in build instead of log (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchubarkin authored and Шараев Айнур Раильевич committed Jun 28, 2021
1 parent a442908 commit 61b76c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function run({ tasks, name, config }) {
})
.catch((error) => {
console.log('FAIL', name, 'task failed');
console.error(error);
throw error;
});
/* eslint-enable no-console */
}

0 comments on commit 61b76c4

Please sign in to comment.