Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Lightning v2 on Pantheon #33

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ dependencies:
fi
- git config --global user.email "$GIT_EMAIL"
- git config --global user.name "Circle CI"
- npm install -g bower
override:
- composer global require -n "hirak/prestissimo:^0.3"
- composer global require -n "consolidation/cgr"
Expand Down
12 changes: 9 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"cweagans/composer-patches": "^1.0",

"drupal/core": "~8",
"acquia/lightning-project": "^8.2",

"drupal/console": "^1.0.0-rc8",
"drush/drush": "~8",
Expand All @@ -38,7 +39,7 @@
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "alpha",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
Expand All @@ -47,11 +48,15 @@
},
"scripts": {
"build-assets": [
"./scripts/composer/install-or-update"
"./scripts/composer/install-or-update",
"@lightning"
],
"drupal-unit-tests": "cd web/core && ../../vendor/bin/phpunit --testsuite=unit --exclude-group Composer,DependencyInjection,PageCache",
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"prepare-for-pantheon": "DrupalProject\\composer\\ScriptHandler::prepareForPantheon",
"lightning": [
"Acquia\\Lightning\\ScriptHandler::deployLibraries"
],
"post-install-cmd": [
"@drupal-scaffold",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
Expand All @@ -78,6 +83,7 @@
"sites/default/default.services.pantheon.preproduction.yml",
"sites/default/settings.pantheon.php"
]
}
},
"enable-patching": true
}
}
Loading