Skip to content

Commit

Permalink
Merge pull request #605 from doomsower/fix-moment-with-locales
Browse files Browse the repository at this point in the history
Replace moment-with-locales.min with regular moment
  • Loading branch information
brunocascio authored Oct 13, 2017
2 parents aa3b7df + 02247fa commit 90cd49a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Day.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
ViewPropTypes,
} from 'react-native';

import moment from 'moment/min/moment-with-locales.min';
import moment from 'moment';

import { isSameDay, isSameUser, warnDeprecated } from './utils';

Expand Down
2 changes: 1 addition & 1 deletion src/GiftedChat.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from 'react-native';

import ActionSheet from '@expo/react-native-action-sheet';
import moment from 'moment/min/moment-with-locales.min';
import moment from 'moment';
import uuid from 'uuid';

import * as utils from './utils';
Expand Down
2 changes: 1 addition & 1 deletion src/Time.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
ViewPropTypes,
} from 'react-native';

import moment from 'moment/min/moment-with-locales.min';
import moment from 'moment';

export default class Time extends React.Component {
render() {
Expand Down

0 comments on commit 90cd49a

Please sign in to comment.