Skip to content

Releases: FormidableLabs/webpack-dashboard

2.0.0

24 May 20:23
Compare
Choose a tag to compare

This is a major update to webpack-dashboard with breaking changes. And a lot of speed and coolness.

Breaking changes

  • Requires node6+.
  • Use the webpack internal stats object instead of real bundles. This is faster and with less futzing / parsing on the dashboard's end. Should permanently fix the no code sections found errors.
  • We've removed command flags / plugin options that no longer apply like --root, etc.

Modules

  • Removed min and min+gz estimated file sizes from modules outputs. This dramatically speeds up the dashboard and reduces CPU usage.

Versions

  • Version skews should be detected more accurately and much faster thanks to dramatically improved heuristics from inspectpack.

Duplicates

  • Duplicates now reports on duplicate files that are (1) completely identical, and (2) the same package name and file path but with different sources. The first are low hanging fruit for optimizations in your build -- you've literally got the same thing multiple times. The latter needs to be coalesced at the package dependency level -- something the versions output can help with.

Issues

  • Upgrade hooks to work in webpack1-4 with abstraction. Fixes #240

Refactoring

  • Switch from chalk to using Blessed's built-in tags for coloring. This is definitely the way to go as things like table spacing don't work with chalk strings and work like a charm with Blessed tags.
  • Update dependencies and remove lots of unused things (like lodash, chalk, bluebird and a whole lot of babel* that apparently wasn't used anyways).
    • New inspectpack is way slimmer and faster, with no more binary dependencies!
  • Switch to yarn-only workflow in dev.
  • Bump Travis node versions.

1.1.0

23 Jan 16:41
Compare
Choose a tag to compare

v1.1.0 Release

Features

  • Adds minified and gzip plugin options for inspectpack to allow more control over the most CPU intensive features / stats of the dashboard.

1.0.0

13 Oct 18:59
Compare
Choose a tag to compare

v1.0.0 Release

Features

  • Add inspectpack for deep bundle introspection and analysis.
    • Add min+gz sizes per module to modules pane.
    • Add duplicates + version analysis to problems pane.
  • Add plugin host option. #188
  • Add keyboard navigation for main log. #203

Docs

  • Add OS support section. #210

Fixes

  • Fix minimal sizing of the 3 lower boxes. #199
  • Do not output log when errors are present. #200
  • Disable inspectpack introspection in --minimal mode. #202
  • Infer webpack configuration state from NODE_ENV. #204

Quality

  • Add basic tests + various test infrastructure. #208

0.3.0

27 Jan 15:45
Compare
Choose a tag to compare
  • Adds the ability to run webpack-dashboard standalone, without passing child process as an argument

0.1.8

24 Aug 11:03
Compare
Choose a tag to compare
  • Removes unnecessary ipc option to fix output in certain cases

0.1.7

22 Aug 19:56
Compare
Choose a tag to compare
  • Fixes startup issues with windows

0.1.6

19 Aug 22:44
Compare
Choose a tag to compare
  • Added missing socket.io-client dependency

0.1.5

19 Aug 17:57
Compare
Choose a tag to compare
  • Switches to socket.io for socket comms
  • Fixes color output

0.1.4

19 Aug 14:59
Compare
Choose a tag to compare
  • Reverting color bug

0.1.3

19 Aug 14:54
Compare
Choose a tag to compare
  • Fixes --color flag where not applicable
  • Adds percentage text to progress bar