Skip to content

Commit

Permalink
Fix compiler not including template files
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-redfern committed Jan 28, 2020
1 parent d02dca9 commit f9c2671
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Services/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ public function compile($pharFile = 'somnambulist-project-manager.phar')
$finder = new Finder();
$finder->files()
->ignoreVCS(true)
->name('*.php')
->name(['*.php', '*.yaml', '*.yml', '*.md', '*.xml'])
->name('LICENSE')
->name('dockerignore')
->name('gitignore')
->exclude('Tests')
->exclude('tests')
->exclude('docs')
Expand Down

0 comments on commit f9c2671

Please sign in to comment.