npm install -g @emulsify/cli
.emulsify init "My Awesome Theme"
(Using your preferred theme name)cd web/themes/custom/my_awesome_theme
emulsify system install --repository https://github.com/emulsify-ds/compound.git --checkout 1.1.0
npm run build
drush then THEME_NAME -y && drush en components emulsify_twig -y
drush config-set system.theme default THEME_NAME -y
drush then
is the correct command for Drush versions >= 9. drush en
is the command to use for Drush versions <= 8.
** if it's not already a part of your project, run composer require drupal/components drupal/emulsify_twig
to get the required Drupal modules.emulsify init "My Awesome Theme --platform drupal .
(The preceding snippet uses .
to indicate "the current location")cd
into that directory and install your system. emulsify system install --repository https://github.com/emulsify-ds/compound.git --checkout 1.1.0
npm run build
to simply compile things, or npm run develop
to start working on the components in isolation.