Skip to content

Commit f9c2671

Browse files
committed
Fix compiler not including template files
1 parent d02dca9 commit f9c2671

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Services/Compiler.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ public function compile($pharFile = 'somnambulist-project-manager.phar')
5050
$finder = new Finder();
5151
$finder->files()
5252
->ignoreVCS(true)
53-
->name('*.php')
53+
->name(['*.php', '*.yaml', '*.yml', '*.md', '*.xml'])
5454
->name('LICENSE')
55+
->name('dockerignore')
56+
->name('gitignore')
5557
->exclude('Tests')
5658
->exclude('tests')
5759
->exclude('docs')

0 commit comments

Comments
 (0)