Skip to content

Commit 2213433

Browse files
authored
Merge pull request #26 from jaguarch/master
fix: #24
2 parents e6b467b + eb77faa commit 2213433

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
composer.lock

src/Commands/Init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private function generateFrameworkFiles()
6969
CLI::newLine();
7070

7171
# Framework files.
72-
$frameworkPath = ($this->framework === 'none') ? 'frameworks/default' : "frameworks/$this->framework";
72+
$frameworkPath = ($this->framework === 'none') ? 'Frameworks/default' : "Frameworks/$this->framework";
7373

7474
$frameworkFiles = directory_map($this->path . $frameworkPath, 1, true);
7575

src/Helpers/vite_helper.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
/**
66
* Get vite entry file or bundled files.
77
*
8+
* @param string js or css
9+
*
810
* @return string|null
911
*/
1012
function viteTags(string $assets): ?string

0 commit comments

Comments
 (0)