The privacy recipe is missing its dependency on drupal_cms_page
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3488608. -->
Reported by: [rabbitlair](https://www.drupal.org/user/2386096)
Related to !212
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>When installing latest from Drupal CMS, there is an issue running the site install step:</p>
<pre>In RecipeConfigurator.php line 73:<br> <br>Can not find the drupal_cms_page recipe, search path: [project-root]/project_template/vendor/composer/../..//recipes </pre><p>After some research, it looks like <code>drupal_cms_page</code> may be missing as a dependency somewhere, as it is not available in the project_template/recipes directory:</p>
<pre># ls project_template/recipes/<br>drupal_cms_accessibility_tools drupal_cms_media_tools<br>drupal_cms_admin_theme drupal_cms_multilingual<br>drupal_cms_anti_spam drupal_cms_privacy_basic<br>drupal_cms_authentication drupal_cms_seo_basic<br>drupal_cms_blog drupal_cms_seo_tools<br>drupal_cms_content_type_base drupal_cms_starter<br>drupal_cms_dashboard easy_email_express<br>drupal_cms_events easy_email_standard<br>drupal_cms_forms easy_email_text_format<br>drupal_cms_image_media_type easy_email_types_core<br>drupal_cms_locations README.txt</pre><h3 id="summary-proposed-resolution">Proposed resolution</h3>
<p>Add the missing dependency <code>drupal_cms_page</code> to <code>recipes/drupal_cms_privacy_basic/composer.json</code>. According to <code>recipes/drupal_cms_privacy_basic/recipe.yml</code>, the <code>drupal_cms_privacy_basic</code> recipe depends on <code>drupal_cms_page</code></p>
issue