Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 670 Bytes

CHANGELOG.md

File metadata and controls

32 lines (26 loc) · 670 Bytes

CHANGELOG

13.0.0

  • Migrated from postcss-cssnext to postcss-preset-env

12.0.0

  • Updated various deps including css-loader which has new module config format

11.0.0

  • Removed redux-logger from dependencies. Long live React Context.
  • Remove fancy dancing around hot loader inclusion because it has near-zero production time impact now. The new API will move to @gasbuddy/react. So where you used to have:
import { hot } from '@gasbuddy/web-dev/hot';
...
  if (process.env.NODE_ENV !== 'production') {
    return hot(module)(router);
  }

You should now have

import { hot } from '@gasbuddy/react';
...
  hot(router)