Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

v6.11.2

Compare
Choose a tag to compare
@hzoo hzoo released this 23 Sep 04:47
· 570 commits to master since this release

Bug Fix

  • #139 Don't do the duplicate check if not an identifier (#140) @hzoo
// regression with duplicate export check
SyntaxError: ./typography.js: `undefined` has already been exported. Exported identifiers must be unique. (22:13)
  20 | 
  21 | export const { rhythm } = typography;
> 22 | export const { TypographyStyle } = typography

Bail out for now, and make a change to account for destructuring in the next release.