Skip to content

Commit 1ed784c

Browse files
committed
Fix the exports to be in ES5 until we figure out #81
1 parent e033cac commit 1ed784c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

react-native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './lib/react-native';
1+
module.exports = require('./lib/react-native');

react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './lib/react';
1+
module.exports = require('./lib/react');

0 commit comments

Comments
 (0)