Skip to content

0.2.0

Compare
Choose a tag to compare
@owais owais released this 10 Sep 09:31
· 290 commits to master since this release

Upgrading to 0.2

Pre-0.2 settings

WEBPACK_LOADER = {
        'BUNDLE_DIR_NAME': 'bundles/',
        'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json')
}

0.2 settings

WEBPACK_LOADER = {
    'DEFAULT': {
        'BUNDLE_DIR_NAME': 'bundles/',
        'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json'),
    }
}

New stuff

  • get_files template tag.
    Thanks to @sbaechler, we can now fetch a list of files from a bundle and constuct custom tags or use the file URLs in javascript.
  • Multiple webpack configurations
    Thanks to @cybercase, webpack loader can now consume the output of multiple stats files in the same project!