Skip to content

Commit

Permalink
remove platform suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
yiminghe committed Jun 15, 2016
1 parent 1029eef commit c47a5ea
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/react-native/picker.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {Component, View, TouchableHighlight, AppRegistry, StyleSheet, Text} from 'react-native';
import Picker from '../../src/index.ios';
import Picker from '../../src/index';

let count = 0;
const len = 10;
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/popup.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {Component, View, TouchableHighlight, AppRegistry, StyleSheet, Text} from 'react-native';
import { Popup, PopupStyles } from '../../src/index.ios';
import { Popup, PopupStyles } from '../../src/index';

const styles = StyleSheet.create({
button: {
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": "rmc-picker",
"version": "3.0.1",
"version": "3.0.2",
"description": "React Mobile Picker Component(web and react-native)",
"keywords": [
"react",
Expand Down
2 changes: 0 additions & 2 deletions src/Picker.android.tsx

This file was deleted.

File renamed without changes.
2 changes: 0 additions & 2 deletions src/Popup.android.tsx

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion src/PopupStyles.android.tsx

This file was deleted.

File renamed without changes.
3 changes: 0 additions & 3 deletions src/index.android.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions src/index.ios.tsx

This file was deleted.

3 changes: 3 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { default } from './Picker';
export { default as Popup } from './Popup';
export { default as PopupStyles } from './PopupStyles';

0 comments on commit c47a5ea

Please sign in to comment.