@@ -133,22 +133,30 @@ public function onPostCmdEvent(Event $event) {
133
133
// Only install the scaffolding if drupal/core was installed,
134
134
// AND there are no scaffolding files present.
135
135
if (isset ($ this ->drupalCorePackage )) {
136
- $ this ->downloadScaffold ();
136
+ $ this ->downloadScaffold ($ event -> isDevMode () );
137
137
// Generate the autoload.php file after generating the scaffold files.
138
138
$ this ->generateAutoload ();
139
139
}
140
140
}
141
141
142
142
/**
143
143
* Downloads drupal scaffold files for the current process.
144
+ *
145
+ * @param bool $dev
146
+ * TRUE if dev packages are installed. FALSE otherwise.
144
147
*/
145
- public function downloadScaffold () {
148
+ public function downloadScaffold ($ dev = FALSE ) {
146
149
$ drupalCorePackage = $ this ->getDrupalCorePackage ();
147
150
$ webroot = realpath ($ this ->getWebRoot ());
148
151
149
- // Collect options, excludes and settings files.
152
+ // Collect options, excludes, dev and settings files.
150
153
$ options = $ this ->getOptions ();
151
- $ files = array_diff ($ this ->getIncludes (), $ this ->getExcludes ());
154
+ $ includes = $ this ->getIncludes ();
155
+ // Check dev files if necessary.
156
+ if ($ dev ) {
157
+ $ includes = array_merge ($ includes , $ this ->getDev ());
158
+ }
159
+ $ files = array_diff ($ includes , $ this ->getExcludes ());
152
160
153
161
// Call any pre-scaffold scripts that may be defined.
154
162
$ dispatcher = new EventDispatcher ($ this ->composer , $ this ->io );
@@ -304,6 +312,15 @@ protected function getIncludes() {
304
312
return $ this ->getNamedOptionList ('includes ' , 'getIncludesDefault ' );
305
313
}
306
314
315
+ /**
316
+ * Retrieve list of additional dev files from optional "extra" configuration.
317
+ *
318
+ * @return array
319
+ */
320
+ protected function getDev () {
321
+ return $ this ->getNamedOptionList ('dev ' , 'getDevDefault ' );
322
+ }
323
+
307
324
/**
308
325
* Retrieve list of initial files from optional "extra" configuration.
309
326
*
@@ -343,6 +360,7 @@ protected function getOptions() {
343
360
'excludes ' => [],
344
361
'includes ' => [],
345
362
'initial ' => [],
363
+ 'dev ' => [],
346
364
'source ' => 'https://cgit.drupalcode.org/drupal/plain/{path}?h={version} ' ,
347
365
// Github: https://raw.githubusercontent.com/drupal/drupal/{version}/{path}
348
366
];
@@ -360,32 +378,48 @@ protected function getExcludesDefault() {
360
378
* Holds default settings files list.
361
379
*/
362
380
protected function getIncludesDefault () {
363
- $ version = $ this ->getDrupalCoreVersion ($ this ->getDrupalCorePackage ());
364
- list ($ major , $ minor ) = explode ('. ' , $ version , 3 );
365
- $ version = "$ major. $ minor " ;
366
-
367
381
/**
368
382
* Files from 8.3.x
369
383
*
370
384
* @see https://cgit.drupalcode.org/drupal/tree/?h=8.3.x
371
385
*/
372
386
$ common = [
373
- '.csslintrc ' ,
374
- '.editorconfig ' ,
375
- '.eslintignore ' ,
376
- '.gitattributes ' ,
377
387
'.htaccess ' ,
378
388
'index.php ' ,
379
389
'robots.txt ' ,
380
390
'sites/default/default.settings.php ' ,
381
391
'sites/default/default.services.yml ' ,
382
- 'sites/development.services.yml ' ,
383
392
'sites/example.settings.local.php ' ,
384
393
'sites/example.sites.php ' ,
385
394
'update.php ' ,
386
395
'web.config ' ,
387
396
];
388
397
398
+ return $ common ;
399
+ }
400
+
401
+ /**
402
+ * Holds default dev files list.
403
+ */
404
+ protected function getDevDefault () {
405
+ $ version = $ this ->getDrupalCoreVersion ($ this ->getDrupalCorePackage ());
406
+ list ($ major , $ minor ) = explode ('. ' , $ version , 3 );
407
+ $ version = "$ major. $ minor " ;
408
+
409
+ /**
410
+ * Files from 8.3.x
411
+ *
412
+ * @see http://cgit.drupalcode.org/drupal/tree/?h=8.3.x
413
+ */
414
+ $ common = [
415
+ '.csslintrc ' ,
416
+ '.editorconfig ' ,
417
+ '.eslintignore ' ,
418
+ '.eslintrc.json ' ,
419
+ '.gitattributes ' ,
420
+ 'sites/development.services.yml ' ,
421
+ ];
422
+
389
423
// Version specific variations.
390
424
if (Semver::satisfies ($ version , '<8.3 ' )) {
391
425
$ common [] = '.eslintrc ' ;
0 commit comments