Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
wdda committed Feb 3, 2023
1 parent 49a74f3 commit b9ecefa
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 42 deletions.
36 changes: 36 additions & 0 deletions app/Console/Commands/Install.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

namespace App\Console\Commands;

use App\Models\Resources\Folders;
use Illuminate\Console\Command;
use Symfony\Component\Console\Command\Command as CommandAlias;

class Install extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'install';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';

/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
Folders::install();

return CommandAlias::SUCCESS;
}
}
1 change: 1 addition & 0 deletions public/build/assets/app-08409b69.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/build/assets/app-57c12c88.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions public/build/assets/app-dc72fc33.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/build/assets/app-edf766a6.css

Large diffs are not rendered by default.

33 changes: 0 additions & 33 deletions public/build/assets/app.0fe24f38.js

This file was deleted.

1 change: 0 additions & 1 deletion public/build/assets/app.3dbc81ae.css

This file was deleted.

22 changes: 16 additions & 6 deletions public/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
{
"resources/js/app.js": {
"file": "assets/app.0fe24f38.js",
"src": "resources/js/app.js",
"resources/css/auth/app.css": {
"file": "assets/app-edf766a6.css",
"src": "resources/css/auth/app.css",
"isEntry": true
},
"resources/css/sass/app.sass": {
"file": "assets/app-08409b69.css",
"src": "resources/css/sass/app.sass",
"isEntry": true
},
"resources/css/app.css": {
"file": "assets/app.3dbc81ae.css",
"src": "resources/css/app.css",
"resources/js/auth/app.js": {
"file": "assets/app-dc72fc33.js",
"src": "resources/js/auth/app.js",
"isEntry": true
},
"resources/js/app.js": {
"file": "assets/app-57c12c88.js",
"src": "resources/js/app.js",
"isEntry": true
}
}
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default defineConfig({
vitePluginRequire(),
laravel({
input: [
'resources/auth/css/app.css',
'resources/auth/js/app.js',
'resources/css/auth/app.css',
'resources/js/auth/app.js',
'resources/js/app.js',
'resources/css/sass/app.sass',
],
Expand Down

0 comments on commit b9ecefa

Please sign in to comment.