admin管理员组文章数量:1341417
I'd like to remove temp build files during or after my laravel-mix build.
Here's some code that I have currently, but del
isn't working:
const mix = require('laravel-mix');
const del = require('del');
// pile sass into temp css file
mix.sass('resources/stylesheets/style.scss', 'public/css/temp.css');
// pile 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
I'd like to remove temp build files during or after my laravel-mix build.
Here's some code that I have currently, but del
isn't working:
const mix = require('laravel-mix');
const del = require('del');
// pile sass into temp css file
mix.sass('resources/stylesheets/style.scss', 'public/css/temp.css');
// pile 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
Share
Improve this question
edited Dec 14, 2018 at 12:14
brad
asked Dec 14, 2018 at 11:41
bradbrad
1,44519 silver badges33 bronze badges
3
- Why are you doing this? Why not directly creating the admin.min.css? – Patrick Schocke Commented Dec 14, 2018 at 12:07
-
1
@KuebelElch15 you can't mix css and sass files inside
mix.sass()
so this is my workaround. – brad Commented Dec 14, 2018 at 12:09 -
Oh, I've overread the
//other css stylesheets
ment – Patrick Schocke Commented Dec 14, 2018 at 12:10
1 Answer
Reset to default 15I was able to solve this by running del
within a then()
returned by mix.styles()
:
const mix = require('laravel-mix');
const del = require('del');
// pile sass into temp css file
mix.sass('resources/stylesheets/style.scss', 'public/css/temp.css');
// pile 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
});
The same thing also works with mix.scripts()
:
mix.scripts([
'public/js/app.js',
'public/js/global.js',
], 'public/js/app.bined.js').then(() => {
del('public/js/app.js');
del('public/js/global.js');
});
本文标签: javascriptDelete Temp Files in Laravel MixStack Overflow
版权声明:本文标题:javascript - Delete Temp Files in Laravel Mix - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669719a2519330.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论