All Versions
64
Latest Version
Avg Release Cycle
43 days
Latest Release
-

Changelog History
Page 7

  • v0.10.0 Changes

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

  • v0.9.1 Changes

    • Syntax error fix - #64
  • v0.9.0 Changes

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

    • Windows support fixed #28

    • Added Encore.addPlugin() #19

    • Added Encore.addLoader() #11

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