Skip to content
This repository was archived by the owner on Apr 9, 2019. It is now read-only.

Commit dce96b4

Browse files
committed
Merge remote-tracking branch 'upstream/master' into pop-to-root
2 parents cd46048 + 6d8e00a commit dce96b4

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function(config) {
1616
'spec/helpers.js',
1717
'node_modules/react/dist/react-with-addons.js',
1818
'node_modules/sinon/pkg/sinon.js',
19-
'spec/**/*.spec.{jsx,js}'
19+
'spec/**/*.spec.+(jsx|js)'
2020
],
2121

2222
// list of files to exclude
@@ -25,7 +25,7 @@ module.exports = function(config) {
2525
// preprocess matching files before serving them to the browser
2626
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
2727
preprocessors: {
28-
'spec/**/*.spec.{jsx,js}': ['webpack']
28+
'spec/**/*.spec.+(jsx|js)': ['webpack']
2929
},
3030

3131
// test results reporter to use

package.json

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-navigation-controller",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "React view manager similar to UINavigationController",
55
"keywords": [
66
"react",
@@ -24,25 +24,27 @@
2424
"react": "^0.13.0"
2525
},
2626
"dependencies": {
27-
"classnames": "^1.2.0",
28-
"rebound": "0.0.12"
27+
"classnames": "^2.1.3",
28+
"rebound": "0.0.13"
2929
},
3030
"devDependencies": {
31-
"babel": "^4.7.16",
32-
"babel-loader": "^4.2.0",
33-
"chai": "^2.2.0",
34-
"karma": "^0.12.31",
31+
"babel": "^5.8.23",
32+
"babel-core": "^5.8.25",
33+
"babel-loader": "^5.3.2",
34+
"chai": "^3.3.0",
35+
"karma": "^0.13.10",
3536
"karma-chai": "^0.1.0",
36-
"karma-chrome-launcher": "^0.1.7",
37-
"karma-mocha": "^0.1.10",
38-
"karma-phantomjs-launcher": "^0.1.4",
39-
"karma-spec-reporter": "0.0.18",
40-
"karma-webpack": "^1.5.0",
41-
"minimist": "^1.1.1",
42-
"mocha": "^2.2.1",
43-
"react": "0.13.1",
44-
"sinon": "^1.14.1",
45-
"webpack": "^1.7.3",
46-
"webpack-dev-server": "^1.7.0"
37+
"karma-chrome-launcher": "^0.2.0",
38+
"karma-mocha": "^0.2.0",
39+
"karma-phantomjs-launcher": "^0.2.1",
40+
"karma-spec-reporter": "0.0.20",
41+
"karma-webpack": "^1.7.0",
42+
"minimist": "^1.2.0",
43+
"mocha": "^2.3.3",
44+
"phantomjs": "^1.9.18",
45+
"react": "0.13.3",
46+
"sinon": "^1.17.1",
47+
"webpack": "^1.12.2",
48+
"webpack-dev-server": "^1.12.0"
4749
}
4850
}

0 commit comments

Comments
 (0)