I am trying to get compass to work in laravel 5.4, I have a existing project in laravel 5.4, I have upgraded to 5.4 and it no longer uses elixir. This is what i was using on 5.3 is there away i can still use compass so i dont have to start over again in my 5.3 project
var elixir = require('laravel-elixir');
require('laravel-elixir-sass-compass');
elixir(function(mix) {
mix.compass("resources/assets/sass/styles.scss", "public/css", {
// style: "nested",
sass: "resources/assets/sass",
font: "resources/assets/fonts",
image: "resources/assets/image",
javascript: "resources/assets/scripts",
sourcemap: true
});
});
i have loads of scripts in compass and would like to stay using it if possible. Thanks