mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
81 lines
2.2 KiB
JavaScript
81 lines
2.2 KiB
JavaScript
var elixir = require('laravel-elixir');
|
|
require('laravel-elixir-codeception-standalone');
|
|
require('laravel-elixir-phpcs');
|
|
require('laravel-elixir-vue-2');
|
|
var bowerPath = './vendor/bower_components';
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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 Sass
|
|
| file for our application, as well as publishing vendor resources.
|
|
|
|
|
*/
|
|
|
|
|
|
elixir(function(mix) {
|
|
|
|
mix.less(
|
|
[
|
|
'app.less',
|
|
'fontawesome-animated.css',
|
|
bowerPath + '/iCheck/skins/minimal/*',
|
|
'AdminLTE.less',
|
|
'skins/skin-blue.less',
|
|
'overrides.less'
|
|
], 'public/assets/css/')
|
|
.copy(bowerPath + '/bootstrap-less/assets/fonts/bootstrap/**', 'public/assets/fonts')
|
|
.copy(bowerPath + '/font-awesome/fonts/*', 'public/assets/fonts');
|
|
|
|
|
|
|
|
mix.webpack(
|
|
// jQuery is loaded from vue.js webpack process
|
|
'./resources/assets/js/vue.js',
|
|
'./resources/assets/js/vue-dist.js'
|
|
);
|
|
|
|
|
|
|
|
|
|
mix.scripts([
|
|
'vue-dist.js',
|
|
bowerPath + '/jquery-ui/**',
|
|
bowerPath + '/bootstrap/dist/js/**',
|
|
bowerPath + '/jquery-slimscroll/**',
|
|
bowerPath + '/jquery.iframe-transport/**',
|
|
bowerPath + '/fileupload/**',
|
|
bowerPath + '/fastclick/**',
|
|
bowerPath + '/bootstrap-colorpicker/**',
|
|
bowerPath + '/bootstrap-datepicker/**',
|
|
bowerPath + '/iCheck/**',
|
|
bowerPath + '/select2/dist/js/select2.full.*',
|
|
bowerPath + '/ekko-lightbox/**',
|
|
'snipeit.js'
|
|
|
|
],'public/assets/js');
|
|
mix.version(['assets/css/app.css','assets/js/all.js']);
|
|
|
|
|
|
// mix.codeception(null, { flags: '--report' });
|
|
|
|
|
|
// mix.phpcs([
|
|
// 'app/**/*.php',
|
|
// 'tests/unit/*.php',
|
|
// 'tests/functional/*.php',
|
|
// 'tests/acceptance/*.php'
|
|
// ], {
|
|
// bin: 'vendor/bin/phpcs',
|
|
// standard: 'PSR2'
|
|
// });
|
|
|
|
|
|
|
|
});
|
|
|
|
|