Skip to content

Commit

Permalink
update dependents
Browse files Browse the repository at this point in the history
  • Loading branch information
helloyou2012 committed May 21, 2019
1 parent 6219775 commit 1fc6826
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build": "npm run build:lib && npm run build:es",
"pretest": "npm run build",
"test": "cross-env BABEL_ENV=test nyc mocha --no-timeouts",
"prepublish": "npm test",
"prepare": "npm test",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
Expand Down Expand Up @@ -52,35 +52,35 @@
"yax": "*"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"connected-react-router": "^6.3.1"
"@babel/runtime": "^7.4.4",
"connected-react-router": "^6.4.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.1",
"coveralls": "^3.0.2",
"babel-plugin-istanbul": "^5.1.4",
"coveralls": "^3.0.3",
"cross-env": "^5.0.0",
"eslint": "^5.14.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"expect": "^24.1.0",
"mocha": "^6.0.0",
"nyc": "^13.3.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^6.0.1",
"react-router": "^4.1.1",
"react-test-renderer": "^16.8.2",
"yax": "^0.4.0"
"expect": "^24.8.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"react-test-renderer": "^16.8.6",
"yax": "^0.4.1"
}
}
4 changes: 2 additions & 2 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import React from 'react';
import renderer from 'react-test-renderer';
import { Provider } from 'react-redux';
import { Route } from 'react-router';
import createHistory from 'history/createMemoryHistory';
import { createMemoryHistory } from 'history';
import router, { Router, push } from '../src/index';

describe('basic', () => {
it('basic test', () => {
let count = 0;
const history = createHistory();
const history = createMemoryHistory();
const store = yax({
state: {}
}, router(history));
Expand Down

0 comments on commit 1fc6826

Please sign in to comment.