Skip to content

Commit 532297c

Browse files
committed
Work on default project structure.
1 parent 0f88129 commit 532297c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+92
-7996
lines changed

.bowerrc

-6
This file was deleted.

assets/sass/app.scss

-8
This file was deleted.

assets/sass/pages/_auth.scss

-4
This file was deleted.

assets/sass/pages/_welcome.scss

-70
This file was deleted.

assets/sass/partials/_buttons.scss

-3
This file was deleted.

assets/sass/partials/_navigation.scss

-5
This file was deleted.

assets/sass/variables.scss

-3
This file was deleted.

bootstrap/app.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
$app = new Illuminate\Foundation\Application(
15-
realpath(__DIR__.'/..')
15+
realpath(__DIR__.'/../')
1616
);
1717

1818
/*

bower.json

-7
This file was deleted.

composer.json

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
"scripts": {
2323
"post-install-cmd": [
2424
"php artisan clear-compiled",
25-
"php artisan route:scan",
26-
"php artisan event:scan",
2725
"php artisan optimize"
2826
],
2927
"post-update-cmd": [

gulpfile.js

+1-17
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,5 @@ var elixir = require('laravel-elixir');
1212
*/
1313

1414
elixir(function(mix) {
15-
mix.sass('app.scss')
16-
.publish(
17-
'jquery/dist/jquery.min.js',
18-
'public/js/vendor/jquery.js'
19-
)
20-
.publish(
21-
'bootstrap-sass-official/assets/javascripts/bootstrap.js',
22-
'public/js/vendor/bootstrap.js'
23-
)
24-
.publish(
25-
'font-awesome/css/font-awesome.min.css',
26-
'public/css/vendor/font-awesome.css'
27-
)
28-
.publish(
29-
'font-awesome/fonts',
30-
'public/css/fonts'
31-
);
15+
mix.sass('app.scss');
3216
});

0 commit comments

Comments
 (0)