Skip to content

Commit

Permalink
Move crc dep to dev. Update modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr committed Jun 15, 2017
1 parent 7337f1a commit bf61f5b
Show file tree
Hide file tree
Showing 4 changed files with 499 additions and 358 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,31 +76,31 @@
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-register": "^6.3.13",
"codecov": "^1.0.1",
"cross-env": "^3.1.3",
"codecov": "^2.2.0",
"create-react-class": "^15.5.3",
"cross-env": "^5.0.1",
"es3ify": "^0.2.0",
"eslint": "^3.3.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.1.1",
"expect": "^1.8.0",
"glob": "^7.1.1",
"istanbul": "^0.4.4",
"jsdom": "^9.8.3",
"jsdom": "^11.0.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"nyc": "^11.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"redux": "^3.0.0",
"rimraf": "^2.3.4",
"rollup": "^0.41.6",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1"
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"create-react-class": "^15.5.3",
"hoist-non-react-statics": "^1.0.3",
"invariant": "^2.0.0",
"lodash": "^4.2.0",
Expand Down
1 change: 0 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ if (env === 'production') {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
screw_ie8: true,
warnings: false
}
})
Expand Down
10 changes: 6 additions & 4 deletions test/setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { jsdom } from 'jsdom'
import { JSDOM } from 'jsdom'

global.document = jsdom('<!doctype html><html><body></body></html>')
global.window = document.defaultView
global.navigator = global.window.navigator
const { window } = new JSDOM('<!doctype html><html><body></body></html>')

global.window = window
global.document = window.document
global.navigator = window.navigator
Loading

0 comments on commit bf61f5b

Please sign in to comment.