Skip to content
This repository has been archived by the owner on Sep 20, 2018. It is now read-only.

Commit

Permalink
Update (most) outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tanem committed Mar 7, 2016
1 parent cdde017 commit 726153f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
5 changes: 2 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"stage": 0,
"loose": ["all"],
"plugins": ["object-assign"]
"presets": ["react", "es2015-loose", "stage-0"],
"plugins": ["transform-object-assign"]
}
22 changes: 13 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,31 @@
"react-dom": "^0.14.0-rc1"
},
"devDependencies": {
"babel": "^5.8.25",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-plugin-object-assign": "^1.2.1",
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.3.0",
"cpy": "^3.4.1",
"doctoc": "^0.15.0",
"cpy": "^4.0.0",
"doctoc": "^1.0.0",
"isparta": "^4.0.0",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-mocha-reporter": "^2.0.0",
"karma-sinon": "^1.0.4",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"mt-changelog": "^0.6.2",
"react": "^0.14.3",
"react-dom": "^0.14.0-rc1",
"release-script": "^0.5.3",
"release-script": "^1.0.2",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.2"
Expand All @@ -60,7 +63,8 @@
"bill": "^2.2.1",
"dom-helpers": "^2.4.0",
"invariant": "^2.2.0",
"lodash": "^3.10.1",
"lodash.create": "^4.0.3",
"lodash.findindex": "^4.2.0",
"promise": "^7.1.1",
"react-addons-test-utils": "^0.14.0-rc1",
"warning": "^2.1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import invariant from 'invariant';
import { findAll, registerPseudo } from 'bill';
import { NODE_TYPES } from 'bill/node';
import * as utils from './utils';
import findIndex from 'lodash/array/findIndex';
import create from 'lodash/object/create'
import findIndex from 'lodash.findIndex';
import create from 'lodash.create'
let { assertLength, is } = utils;

function indexOfNode(arr, findNode) {
Expand Down

0 comments on commit 726153f

Please sign in to comment.