Skip to content

v0.10.0

Compare
Choose a tag to compare
@weaverryan weaverryan released this 12 Jul 23:39
· 1213 commits to main since this release

Great Scott! A new Release!

To upgrade: yarn upgrade

Changes: v0.9.1..v0.10.0

Documentation: http://symfony.com/doc/current/frontend.html

Highlights:

  • [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