We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de043fc commit 456daa3Copy full SHA for 456daa3
src/Presets/Bootstrap.php
@@ -2,6 +2,8 @@
2
3
namespace Laravel\Ui\Presets;
4
5
+use Illuminate\Filesystem\Filesystem;
6
+
7
class Bootstrap extends Preset
8
{
9
/**
@@ -39,6 +41,8 @@ protected static function updatePackageArray(array $packages)
39
41
*/
40
42
protected static function updateSass()
43
44
+ (new Filesystem)->ensureDirectoryExists(resource_path('sass'));
45
46
copy(__DIR__.'/bootstrap-stubs/_variables.scss', resource_path('sass/_variables.scss'));
47
copy(__DIR__.'/bootstrap-stubs/app.scss', resource_path('sass/app.scss'));
48
}
0 commit comments