Skip to content

Commit

Permalink
Merge pull request #104 from h2s20/master
Browse files Browse the repository at this point in the history
fixed and issue with imports when using react router (closing #102)
  • Loading branch information
timbrandin authored Apr 5, 2017
2 parents 1224532 + 8fb7666 commit e89eaf6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog

### v1.2.20
13-March-2017

* Fixed an issue with imports when using react router.

### v1.2.19
16-February-2017

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# React Accounts UI

Current version 1.2.19
Current version 1.2.20

## Features

Expand Down
3 changes: 2 additions & 1 deletion imports/helpers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
try { import { browserHistory } from 'react-router'; } catch(e) {}
let browserHistory
try { browserHistory = require('react-router').browserHistory } catch(e) {}
export const loginButtonsSession = Accounts._loginButtonsSession;
export const STATES = {
SIGN_IN: Symbol('SIGN_IN'),
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'std:accounts-ui',
version: '1.2.19',
version: '1.2.20',
summary: 'Accounts UI for React in Meteor 1.3+',
git: 'https://github.com/studiointeract/accounts-ui',
documentation: 'README.md'
Expand Down

0 comments on commit e89eaf6

Please sign in to comment.