From f9c2671f4a55cb3ebdab01cdbaa9efd93e854766 Mon Sep 17 00:00:00 2001 From: Dave Redfern Date: Tue, 28 Jan 2020 15:16:09 -0500 Subject: [PATCH] Fix compiler not including template files --- src/Services/Compiler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Services/Compiler.php b/src/Services/Compiler.php index 235e67d..1a7d3ec 100644 --- a/src/Services/Compiler.php +++ b/src/Services/Compiler.php @@ -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')