mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 12:42:36 +01:00
Set up basic elixir config
This commit is contained in:
parent
4795f33067
commit
1b4cdb4c3c
34
gulpfile.js
34
gulpfile.js
@ -1,16 +1,30 @@
|
||||
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.
|
||||
|
|
||||
/**
|
||||
* Set Elixir Source Maps
|
||||
*
|
||||
* @type {boolean}
|
||||
*/
|
||||
elixir.config.sourcemaps = true;
|
||||
|
||||
/**
|
||||
* Directory for bower source files.
|
||||
* If changing this, please also see .bowerrc
|
||||
*
|
||||
* @type {string}
|
||||
*/
|
||||
var bowerDir = 'public/vendor';
|
||||
|
||||
elixir(function(mix) {
|
||||
mix.less('app.less');
|
||||
|
||||
/**
|
||||
* CSS configuration
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* JS configuration
|
||||
*/
|
||||
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user