Skip to content

Commit

Permalink
Merge pull request #520 from airbnb/f/fix-svg-export
Browse files Browse the repository at this point in the history
fix the SVG component export
  • Loading branch information
mathieudutour authored Jun 10, 2020
2 parents 76ee113 + f08d317 commit 29f48d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This project adheres to [Semantic Versioning](http://semver.org/). Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/airbnb/react-sketchapp/releases) page.

## Version 3.2.6

- Fix the SVG component export

## Version 3.2.5

- Fix Skpm taking the wrong entry point when requiring react-sketchapp
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-sketchapp",
"version": "3.2.5",
"version": "3.2.6",
"description": "A React renderer for Sketch.app",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ export { Image } from './Image';
export { RedBox } from './RedBox';
export { View } from './View';
export { Text } from './Text';
import * as Svg from './Svg';
import Svg from './Svg';
export { Svg };

0 comments on commit 29f48d8

Please sign in to comment.