Symfony Encore v0.10.0 Release Notes

    • [BC BREAK] If you're using enableSassLoader() AND passing an options array, the options now need to be moved to the second argument:
       // before
       .enableSassLoader({ resolve_url_loader: true });
    
       // after
       enableSassLoader(function(sassOptions) {}, {
           resolve_url_loader: true
       })
    
    • Allowing typescript options callback to be optional - #75

    • Allow the Encore singleton to be reset - #83

    • Fixing bug with vue-loader and sass - #89