-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
40 lines (33 loc) · 1.15 KB
/
gulpfile.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
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your WordPlate application. By default, we are compiling the Sass
| file for our application, as well as publishing vendor resources.
|
*/
elixir.config.publicPath = 'public/themes/wordplate/assets';
elixir.config.css.outputFolder = 'styles';
elixir.config.css.sass.folder = 'styles';
elixir.config.js.folder = 'scripts';
elixir.config.js.outputFolder = 'scripts';
elixir(function (mix) {
mix.sass('app.scss');
mix.browserify('app.js');
mix.copy(elixir.config.assetsPath + '/images', elixir.config.publicPath + '/images');
mix.version([
elixir.config.publicPath + '/styles/*.css',
elixir.config.publicPath + '/scripts/*.js'
]);
mix.browserSync({
proxy: 'wordplate.dev',
files: [
'public/themes/wordplate/**/*.php',
elixir.config.publicPath + '/**/*.js',
elixir.config.publicPath + '/**/*.css'
]
});
});