Skip to content

Releases: symfony/webpack-encore

v0.9.0

29 Jun 19:46
Compare
Choose a tag to compare

Yes! New Release!

Changes: v0.8.0..v0.9.0

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

Highlights:

  • [BEHAVIOR CHANGE] When using autoProvidejQuery(), window.jQuery is now also
    included (and so will be re-written in the compiled files). If you're also exposing
    jQuery as a global variable, you'll need to update your code:

    // Before: if you had this
    window.jQuery = require('jquery');
    
    // After: change to this
    global.jQuery = require('jquery');
  • Vue.js support! See #49

  • Typescript support! See #50

v0.8.0

21 Jun 15:38
Compare
Choose a tag to compare

Changes: v0.7.2..v0.8.0

Highlights:

  • Windows support fixed #28

  • Added Encore.addPlugin() #19

  • Added Encore.addLoader() #11

  • Encore.cleanupOutputBeforeBuild() now empties the directory
    instead or removing it.