Skip to content

Commit a404e3f

Browse files
authored
Merge pull request #18811 from ckeditor/ck/18810
Display errors when building the editor for docs
2 parents 6c98158 + 6c26c14 commit a404e3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/docs/build-ckeditor-packages.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import { CKEDITOR5_ROOT_PATH, CKEDITOR5_COMMERCIAL_PATH } from '../constants.mjs
1313
import generateCKEditor5DocsBuild from './generate-ckeditor5-docs-build.mjs';
1414

1515
buildCKEditorPackages()
16-
.catch( () => {
16+
.catch( error => {
17+
console.error( error );
1718
process.exitCode = 1;
1819
} );
1920

0 commit comments

Comments
 (0)