Skip to content

Commit

Permalink
ACMS-746: Bundled content breaking config imports (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
chandan-singh7929 authored May 26, 2021
1 parent e410bf9 commit a7f39a0
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 2 deletions.
1 change: 1 addition & 0 deletions acquia_cms.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ install:
- cohesion_style_guide
- cohesion_style_helpers
- cohesion_sync
- config_ignore
- cohesion_templates
- cohesion_website_settings
- collapsiblock
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"drupal/autologout": "^1",
"drupal/checklistapi": "^2.0",
"drupal/collapsiblock": "^3",
"drupal/config_ignore": "^2.3",
"drupal/config_rewrite": "1.3",
"drupal/core": "^9.1.7",
"drupal/default_content": "^2",
Expand Down
126 changes: 125 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions config/optional/config_ignore.settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ignored_config_entities:
- 'language.entity.*'
- 'media.type.image:uuid'
- 'crop.type.focal_point:uuid'
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ public function rebuildSiteStudio() {
$batch = &batch_get();
$batch = NULL;
unset($batch);
return DX8CommandHelpers::rebuild([]);
return DX8CommandHelpers::rebuild([
'verbose' => '',
'no-cache-clear' => FALSE,
]);
}

/**
Expand Down

0 comments on commit a7f39a0

Please sign in to comment.