Answer the question
In order to leave comments, you need to log in
Why doesn't elixir work in gulp?
Hello, there is such a package.json:
{
"name": "test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"gulp": "^4.0.2",
"gulp-stylus": "^2.7.0",
"laravel-elixir-gulp-v4-compat": "^6.0.0-18"
}
}
const elixir = require('laravel-elixir-gulp-v4-compat');
function defaultTask(cb) {
elixir(function (mix) {
mix.sass('./app.scss', './build/app.css');
});
cb();
}
exports.default = defaultTask
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question