Skip to content

Releases: jaredpalmer/razzle

v3.0.0-alpha.0

14 Nov 15:57
Compare
Choose a tag to compare
v3.0.0-alpha.0 Pre-release
Pre-release
v3.0.0-alpha.0

v2.4.0

30 Jul 12:58
Compare
Choose a tag to compare

Minor Release

tl;dr

  • Added pretty node errors!
  • Preserve the full --inspect= flag as passed to yarn start
  • Added testEnvironmentOptions to supportedKeys for Jest
  • Added mdx-plugin
  • Added support for function plugins
  • Introduce config.modifyBabelOptions so Razzle can be used in really interesting places

Commits

v2.2.0

15 Jun 22:27
Compare
Choose a tag to compare

Minor Release

  • Bump to Jest 23
  • Started on plugin documentation
  • Squatting/stubbed future plugins on npm

v2.1.0

12 Jun 22:34
Compare
Choose a tag to compare

Security Patch 👮 🔐

  • Upgraded to Jest 22 (patching some security vulnerabilities). Thank you @benjaminhobbs !

Other Improvements 🚀

  • Upgraded to babel-eslint v8
  • Fixed instructions in react-native-web example README.md
  • Removed some redundant deps

v2.0.4

06 Jun 21:17
Compare
Choose a tag to compare

Bug fix

  • Fix Typescript Plugin to account for removal of thread-loader

v2.0.3

04 Jun 22:07
Compare
Choose a tag to compare

Speed Improvements for TypeScript users ⚡️ 🔥 🔋

The new TypeScript plugin now includes the perf optimizations utilized by the Microsoft Outlook team.

 // only run if (target === 'web)
 if (dev) { 
      // As suggested by Microsoft's Outlook team, these optimizations
      // crank up Webpack x TypeScript perf.
      // @see https://medium.com/@kenneth_chau/speeding-up-webpack-typescript-incremental-builds-by-7x-3912ba4c1d15
      config.output.pathinfo = false;
      config.optimization = {
        removeAvailableModules: false,
        removeEmptyChunks: false,
        splitChunks: false,
      };
    }

See: https://medium.com/@kenneth_chau/speeding-up-webpack-typescript-incremental-builds-by-7x-3912ba4c1d15

v2.0.2

01 Jun 23:02
Compare
Choose a tag to compare

Patch Release

  • Removed thread-loader from babel-loader due to report perf degradations.

v2.0.1

01 Jun 18:56
Compare
Choose a tag to compare

Patch Release

  • Fix #632 . Made webpack object available in the last argument of modify() in razzle.config.js during razzle build task.

v2.0.0

01 Jun 18:55
Compare
Choose a tag to compare

New Stuff

  • Webpack 4
  • New logger
  • No more race condition on startup
  • Improved and faster HMR. We saw 800% reduction in reload speed with TypeScript on an app with 2000+ files
  • PLUGINS!
  • Runtime environment variables

Blog post soon.

Breaking Changes

1.0.1

30 May 17:25
Compare
Choose a tag to compare

1.0.1

This release is simply for posterity, please use v2.