Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove jquery_ui #820

Merged
merged 3 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@
"npm-asset/slick-carousel": "^1.8",
"npm-asset/select2": "^4.0.7",
"caxy/php-htmldiff": "^0.1.14",
"webonyx/graphql-php": "^14.11.8",
"drupal/jquery_ui": "^1.6"
"webonyx/graphql-php": "^14.11.8"
},
"suggest": {
"drupal/search_api_solr": "Provides a Apache Solr backend for the Search API module"
Expand Down
3 changes: 2 additions & 1 deletion docs/developer-guide/migration/migrate-7-8.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ was successfully executed.
composer require drupal/blazy drupal/slick
```

Also, if you have the jquery_ui_draggable or default_content enabled, you have to
Also, if you have jquery_ui, jquery_ui_draggable or default_content enabled, you have to
require them own your own, since Thunder removed them from the distribution.

```bash
composer require drupal/jquery_ui
composer require drupal/jquery_ui_draggable
composer require drupal/default_content
```
1 change: 0 additions & 1 deletion thunder.post_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ function thunder_post_update_0001_upgrade_to_thunder7(array &$sandbox): string {
$moduleInstaller->install([
'media_library_media_modify',
'gin_toolbar',
'jquery_ui',
'ckeditor5',
]);

Expand Down
Loading