Skip to content

Commit

Permalink
Fix 'productivity-pack' demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
f1ames committed May 29, 2024
1 parent b73a6ff commit f82d61e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion productivity-pack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const WEB_SPELL_CHECKER_LICENSE_KEY = '';
import DecoupledEditor from '@ckeditor/ckeditor5-editor-decoupled/src/decouplededitor';

// Features
import AdjacentListsSupport from '@ckeditor/ckeditor5-list/src/documentlist/adjacentlistssupport.js';
import AdjacentListsSupport from '@ckeditor/ckeditor5-list/src/list/adjacentlistssupport';
import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment';
import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
Expand Down
7 changes: 1 addition & 6 deletions tests/scripts/build-and-test-demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ for DIR in "$DEMOS_PATH"/* ; do
if [[ -f "webpack.config.js" ]]; then
# - Use legacy webpack build if webpack config present
echo "Using webpack build..."
npx webpack --mode development > /dev/null
yarn build-dev > /dev/null
else
# - Build with yarn + vite and move files to common dir
echo "Using vite build..."
Expand All @@ -39,11 +39,6 @@ for DIR in "$DEMOS_PATH"/* ; do
cp "$DIR/dist/mobile-iframe.html" "$DEMOS_PATH/builds/mobile-iframe.html"
fi
fi

if [ ! $? -eq 0 ]; then
echo "Building failed: $DEMO_NAME"
ERROR=1
fi
fi
done

Expand Down

0 comments on commit f82d61e

Please sign in to comment.