Skip to content

Commit 6393ce3

Browse files
committed
use react-native from local project instead of npm package
1 parent dd06c6b commit 6393ce3

File tree

99 files changed

+98
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+98
-105
lines changed

.babelrc

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
{
2-
"breakConfig": true,
3-
"stage": 1,
4-
"plugins": [
5-
"dev-expression"
6-
]
7-
}
1+
{}

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"warning": "^2.1.0"
4141
},
4242
"peerDependencies": {
43-
"react-native": "^0.13.0",
4443
"react-tap-event-plugin": "^0.2.0"
4544
},
4645
"devDependencies": {

src/app-bar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import StylePropable from './mixins/style-propable';
33
import Typography from './styles/typography';
44
import IconButton from './icon-button';

src/app-canvas.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import StylePropable from './mixins/style-propable';
33
import DefaultRawTheme from './styles/raw-themes/light-raw-theme';
44
import ThemeManager from './styles/theme-manager';

src/auto-complete.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import ReactTransitionGroup from 'react-addons-transition-group';
33
import StylePropable from './mixins/style-propable';
44
import ClickAwayable from './mixins/click-awayable';

src/avatar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import StylePropable from './mixins/style-propable';
33
import Colors from './styles/colors';
44
import DefaultRawTheme from './styles/raw-themes/light-raw-theme';

src/badge.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import Typography from './styles/typography';
33
import DefaultRawTheme from './styles/raw-themes/light-raw-theme';
44
import ThemeManager from './styles/theme-manager';

src/before-after-wrapper.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../react-native';
22
import StylePropable from './mixins/style-propable';
33
import AutoPrefix from './styles/auto-prefix';
44
import DefaultRawTheme from './styles/raw-themes/light-raw-theme';

src/buttons/flat-button-label.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../../react-native';
22
import ContextPure from '../mixins/context-pure';
33
import StylePropable from '../mixins/style-propable';
44
import DefaultRawTheme from '../styles/raw-themes/light-raw-theme';

src/card/card-actions.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react-native';
1+
import React from '../../../react-native';
22
import StylePropable from '../mixins/style-propable';
33
import ThemeManager from '../styles/theme-manager';
44
import DefaultRawTheme from '../styles/raw-themes/light-raw-theme';

0 commit comments

Comments
 (0)