Skip to content

Commit

Permalink
chore(SemanticRelease): Fixe node-fetch dependency issue causing Gith…
Browse files Browse the repository at this point in the history
…ub plugin to fail
  • Loading branch information
HHogg committed Nov 23, 2018
1 parent c068329 commit 3e25336
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 132 deletions.
2 changes: 2 additions & 0 deletions jest-setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
global.requestAnimationFrame = setTimeout;
global.cancelAnimationFrame = clearTimeout;
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"react"
],
"dependencies": {
"react": "^16.2.0"
"react": "^16.3.0"
},
"peerDependecies": {
"remarkable": "^1.7.1"
Expand All @@ -43,9 +43,9 @@
"babel-preset-env": "^1.6.1",
"eslint": "^4.5.0",
"eslint-config-preshape": "^1.1.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^20.0.4",
"react-test-renderer": "^16.2.0",
"react-test-renderer": "^16.6.3",
"remarkable": "^1.7.1",
"rollup": "^0.47.4",
"rollup-plugin-babel": "^3.0.1",
Expand All @@ -54,5 +54,10 @@
"rollup-plugin-uglify": "^2.0.1",
"semantic-release": "^15.12.1",
"travis-deploy-once": "^5.0.9"
},
"jest": {
"setupFiles": [
"./jest-setup.js"
]
}
}
Loading

0 comments on commit 3e25336

Please sign in to comment.