8000 Refactored gulpfile · vs0uz4/l5vueka-laravel-vuejs@a96b24d · GitHub
[go: up one dir, main page]

Skip to content

Commit a96b24d

Browse files
committed
Refactored gulpfile
- Implemented versioning and browsersync; - Rebuilt assets. - Change welcome view.
1 parent 4b99f20 commit a96b24d

16 files changed

+10105
-6
lines changed

public/build/css/app-ad87f36536.css

+7,673
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/css/app.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/css/vendor-0634183a17.css

+2,339
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/css/vendor.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

public/build/js/app-bebefb2a4c.js

+80
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/rev-manifest.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"css/app.css": "css/app-ad87f36536.css",
3+
"css/vendor.css": "css/vendor-0634183a17.css",
4+
"js/app.js": "js/app-bebefb2a4c.js"
5+
}

public/js/app.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/app.js.map

-1
This file was deleted.

resources/assets/js/app.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

22
window.jQuery = window.$ = require('jquery')
33

4+
console.log('jQuery Adicionado com Sucesso!');

resources/views/welcome.blade.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
88
<title>Bem Vindos so Curso!</title>
9-
<link rel="stylesheet" href="{{ asset('css/vendor.css') }}">
10-
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
9+
<link rel="stylesheet" href="{{ elixir('css/vendor.css') }}">
10+
<link rel="stylesheet" href="{{ elixir('css/app.css') }}">
1111
</head>
1212
<body>
1313
<div class="container">
1414
<h1>
15-
<i class="fa fa-fw fa-github"></i>Curso Laravel e Vue.Js
15+
<i class="fa fa-fw fa-github"></i>Curso Laravel 5.3 e Vue.Js 2.0
1616
</h1>
1717
</div>
1818

19-
<script src="{{ asset('js/app.js') }}"></script>
19+
<script src="{{ elixir('js/app.js') }}"></script>
2020
</body>
2121
</html>

0 commit comments

Comments
 (0)
0