vueified-date-range-picker
Version:
A vue date range picker
34 lines (26 loc) • 732 B
JavaScript
/**
*
* @type {*|Api}
*/
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 your application, as well as bundling up your JS files.
|
*/
mix.setPublicPath('dist');
mix.options({
processCssUrls: true,
});
/** Build src */
mix.js('src/VueifiedDateRangePicker.vue', 'dist/');
/** Build example */
mix.js('src/example/app.js', 'dist/example/');
if (!mix.inProduction()) {
mix.sourceMaps();
}