We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e8063 commit 8bcedacCopy full SHA for 8bcedac
.gitignore
@@ -0,0 +1,2 @@
1
+vendor/
2
+.idea/
src/Watcher.php
@@ -115,6 +115,12 @@ public function checkChanges(): void
115
$this->checkFile($watchFor);
116
}
117
118
+
119
+ // Checks the deleted files
120
+ foreach ($this->files as $key => $file) {
121
+ $this->checkFile($key);
122
+ }
123
124
$this->commit();
125
126
if (!$this->initialized) {
0 commit comments