-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.mix.js
57 lines (55 loc) · 3.92 KB
/
webpack.mix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
let mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css')
.scripts([
'node_modules/locawebstyle/source/assets/javascripts/libs/jquery-2.1.0.min.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/_hopscotch.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/_jquery.cookie.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/jquery.mask.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/holder.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/html5shiv.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/mediaqueries-ie.js',
'node_modules/locawebstyle/dist/javascripts/templates.js',
'resources/assets/legacy/_template.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/moment.min.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/pikaday.js',
'node_modules/locawebstyle/source/assets/javascripts/libs/pikaday.jquery.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_initializer.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_breakpoint-check.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_sidebars.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_sidebar-toggle.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_collapse.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_modal.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_alert.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_dismiss.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_popover.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_dropdown.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_tabs.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_templates.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_general.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_progress-bar.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_form.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_guided-tour.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_topbar-curtain.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_btn-group.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_datepicker.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_char-counter.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_browser-detect.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_browser-unsupported-bar.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_track-events.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_steps.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_tabs-button.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_switch-button.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_toggle-text.js',
'node_modules/locawebstyle/source/assets/javascripts/locastyle/_checkbox-toggle.js',
], 'public/js/vendor.js');