Удалить временные файлы в Laravel Mix
Я хотел бы удалить временные файлы сборки во время или после моей сборки laravel-mix.
Вот код, который у меня есть в настоящее время, но del
не работает:
const mix = require('laravel-mix');
const del = require('del');
// compile sass into temp css file
mix.sass('resources/stylesheets/style.scss', 'public/css/temp.css');
// compile css
mix.styles([
// other css stylesheets here...
'public/css/temp.css' // include temp css file
], 'public/css/admin.min.css');
// delete temp css file
del('public/css/temp.css'); // not deleting the file
0 ответов
Я смог решить эту проблему, запустив del
в пределах then()
вернулся mix.styles()
:
const mix = require('laravel-mix');
const del = require('del');
// compile sass into temp css file
mix.sass('resources/stylesheets/style.scss', 'public/css/temp.css');
// compile css
mix.styles([
// other css stylesheets here...
'public/css/temp.css' // include temp css file
], 'public/css/admin.min.css').then(() => {
del('public/css/temp.css'); // deletes the temp file
});
То же самое работает и с mix.scripts()
:
mix.scripts([
'public/js/app.js',
'public/js/global.js',
], 'public/js/app.combined.js').then(() => {
del('public/js/app.js');
del('public/js/global.js');
});