Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit d8c44c9

Browse files
committed
Fix bug where package wasn't exported properly
1 parent c20dc6d commit d8c44c9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
### vNEXT
44

5+
### v2.0.1
6+
- Fix bug where package wasn't exported properly [PR #67 (comment)](https://github.com/alexcurtis/react-treebeard/pull/67#issuecomment-312475622)
7+
58
### v2.0.0
69
- **BREAKING:** The `peerDependencies` range (for both `react` & `react-dom`)has been changed from `^0.14 || ^15.0` to `^15.5.4`.
710
- Uses `prop-types` package instead of `React.PropTypes`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-treebeard",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "React Tree View Component",
55
"main": "index.js",
66
"scripts": {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import decorators from './components/decorators';
55
import animations from './themes/animations';
66
import theme from './themes/default';
77

8-
export default {
8+
export {
99
Treebeard,
1010
decorators,
1111
animations,

0 commit comments

Comments
 (0)