Skip to content

Commit

Permalink
Fix the last imports of 'invariant'
Browse files Browse the repository at this point in the history
Summary:This changes the last two imports of `'invariant'` that I could find to `'fbjs/lib/invariant'`.
Closes facebook#6248

Differential Revision: D3000440

fb-gh-sync-id: 15ebd08bb749d1d82b12902dd3dec00914fc1ed5
shipit-source-id: 15ebd08bb749d1d82b12902dd3dec00914fc1ed5
  • Loading branch information
davidaurelio authored and Facebook Github Bot 8 committed Mar 2, 2016
1 parent f6b0c13 commit eb53194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

const PanResponder = require('PanResponder');

const invariant = require('invariant');
const invariant = require('fbjs/lib/invariant');

const EmptyPanHandlers = {
onMoveShouldSetPanResponder: null,
Expand Down
2 changes: 1 addition & 1 deletion Libraries/NavigationExperimental/NavigationStateUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
'use strict';

const invariant = require('invariant');
const invariant = require('fbjs/lib/invariant');

export type NavigationState = {
key: string;
Expand Down

0 comments on commit eb53194

Please sign in to comment.