forked from proengsoft/laravel-jsvalidation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
46 lines (41 loc) · 1.48 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
41
42
43
44
45
46
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Less
| file for our application, as well as publishing vendor resources.
|
*/
var minSuffix = '';
var bowerPath = '../bower_components/';
if (elixir.config.production) {
minSuffix = '.min';
}
elixir(function(mix) {
/**
* Combining scripts and their dependencies
*/
mix.scripts(
[
bowerPath + 'jquery-validation/dist/jquery.validate.js',
bowerPath + 'phpjs/functions/strings/strlen.js',
bowerPath + 'phpjs/functions/array/array_diff.js',
bowerPath + 'phpjs/functions/datetime/strtotime.js',
bowerPath + 'phpjs/functions/var/is_numeric.js',
bowerPath + 'php-date-formatter/js/php-date-formatter.js',
'assets/js/jsvalidation.js',
'assets/js/helpers.js',
'assets/js/timezones.js',
'assets/js/validations.js'
],
'public/js/jsvalidation' + minSuffix + '.js',
'resources'
);
mix.copy(
'public/js/jsvalidation'+minSuffix+'.js',
'../../../public/vendor/jsvalidation/js/jsvalidation'+minSuffix+'.js'
);
});