Skip to content

Commit 6a313d1

Browse files
committed
chore(dependencies): updated several package versions
1 parent 4f77976 commit 6a313d1

File tree

6 files changed

+98
-67
lines changed

6 files changed

+98
-67
lines changed

package-lock.json

Lines changed: 78 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
"coverage": "nyc run-s tests:unit:no-coverage",
1313
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
1414
"tests:unit": "run-s coverage",
15-
"tests:integration": "cucumber.js test/integration --compiler js:babel-register --tags 'not @wip'",
15+
"tests:integration": "run-s tests:integration:base -- --tags 'not @wip'",
16+
"tests:integration:base": "cucumber-js test/integration --require-module babel-register --format-options '{\"snippetInterface\": \"async-await\"}'",
1617
"tests:integration:debug": "DEBUG=test run-s tests:integration",
17-
"tests:integration:wip": "cucumber.js test/integration --compiler js:babel-register --tags @wip",
18+
"tests:integration:wip": "run-s tests:integration:base -- --tags @wip",
1819
"test": "run-s lint:* tests:*",
1920
"start": "cross-env BABEL_ENV=example babel-node ./example/app.js",
2021
"build": "rollup -c",
@@ -57,9 +58,9 @@
5758
"boom": "6.0.0",
5859
"chai": "4.1.2",
5960
"chai-as-promised": "7.1.1",
60-
"codecov": "3.0.1",
61+
"codecov": "3.0.2",
6162
"cross-env": "5.1.5",
62-
"cucumber": "3.2.1",
63+
"cucumber": "^4.2.1",
6364
"cz-conventional-changelog": "2.1.0",
6465
"globstar": "1.0.0",
6566
"glue": "5.0.0",
@@ -69,32 +70,32 @@
6970
"greenkeeper-lockfile": "1.15.0",
7071
"hapi": "16.6.2",
7172
"hapi-mustache": "0.0.1",
72-
"husky": "0.15.0-rc.2",
73+
"husky": "^1.0.0-rc.6",
7374
"markdownlint-cli": "0.8.2",
7475
"material-ui": "0.20.1",
7576
"mocha": "5.1.1",
7677
"npm-run-all": "4.1.3",
77-
"nyc": "11.7.3",
78+
"nyc": "11.8.0",
7879
"prop-types": "15.6.1",
79-
"react": "15.6.2",
80-
"react-dom": "15.6.2",
80+
"react": "^16.3.2",
81+
"react-dom": "^16.3.2",
8182
"react-redux": "5.0.7",
82-
"react-router": "3.0.5",
83+
"react-router": "^3.2.1",
8384
"react-tap-event-plugin": "3.0.2",
8485
"redial": "0.5.0",
85-
"redux": "3.7.2",
86+
"redux": "4.0.0",
8687
"rollup": "0.59.1",
8788
"rollup-plugin-babel": "3.0.4",
88-
"semantic-release": "15.1.8",
89-
"sinon": "4.4.6",
89+
"semantic-release": "15.4.1",
90+
"sinon": "5.0.7",
9091
"validate-commit-msg": "2.14.0",
9192
"vision": "4.1.1",
9293
"visionary": "6.0.2"
9394
},
9495
"peerDependencies": {
95-
"boom": "^5.1.0",
96-
"react": "^15.6.0",
97-
"react-dom": "^15.6.0",
96+
"boom": "^6.0.0",
97+
"react": "^16.0.0",
98+
"react-dom": "^16.0.0",
9899
"react-router": "^3.0.5",
99100
"redial": "^0.5.0"
100101
},

test/unit/data-fetcher-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ suite('data fetcher', () => {
88
let sandbox;
99

1010
setup(() => {
11-
sandbox = sinon.sandbox.create();
11+
sandbox = sinon.createSandbox();
1212

1313
sandbox.stub(redial, 'trigger');
1414
});

test/unit/route-matcher-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ suite('route matcher', () => {
1414
const url = any.string();
1515

1616
setup(() => {
17-
sandbox = sinon.sandbox.create();
17+
sandbox = sinon.createSandbox();
1818

1919
sandbox.stub(reactRouter, 'createMemoryHistory').returns({createLocation});
2020
sandbox.stub(reactRouter, 'match');

test/unit/route-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ suite('route', () => {
88
let sandbox;
99

1010
setup(() => {
11-
sandbox = sinon.sandbox.create();
11+
sandbox = sinon.createSandbox();
1212

1313
sandbox.stub(routerWrapper, 'default');
1414
});

test/unit/router-wrapper-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ suite('router-wrapper', () => {
1919
const request = {raw: {req: {url}}};
2020

2121
setup(() => {
22-
sandbox = sinon.sandbox.create();
22+
sandbox = sinon.createSandbox();
2323

2424
sandbox.stub(routeMatcher, 'default');
2525
sandbox.stub(dataFetcher, 'default');

0 commit comments

Comments
 (0)