Skip to content

Commit

Permalink
[#202] Update and fix NodeJS version and… (#203)
Browse files Browse the repository at this point in the history
* [#202] Update and fix NodeJS version and…

…dependencies

* Resolve "fsevents" issue with Node.js 13+

* Fix linter issue

* Update to Node.js 13+ on Circle CI

* Update dependencies (#204)

* Update "runtime" dependencies

* Update browser launchers

* Update "react-test-renderer"

* Update build dependencies

* Update test dependencies

* Update linting dependencies
  • Loading branch information
pmeinhardt authored Feb 27, 2020
1 parent 9cf0975 commit b4d5547
Show file tree
Hide file tree
Showing 4 changed files with 3,551 additions and 4,987 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
references:
base: &base
docker:
- image: circleci/node:10
- image: circleci/node:13
working_directory: ~/tickety-tick
jobs:
setup:
Expand Down
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,59 +26,59 @@
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"babel-jest": "^24.9.0",
"babel-jest": "^25.1.0",
"babel-loader": "8.0.6",
"chrome-launcher": "^0.11.2",
"chrome-launcher": "^0.12.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "5.1.0",
"cross-env": "6.0.0",
"css-loader": "3.2.0",
"copy-webpack-plugin": "5.1.1",
"cross-env": "7.0.0",
"css-loader": "3.4.2",
"cssnano": "^4.1.8",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "^3.4.0",
"eslint": "6.4.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"eslint-plugin-react-hooks": "^2.5.0",
"file-loader": "^5.1.0",
"git-revision-webpack-plugin": "^3.0.4",
"html-webpack-plugin": "3.2.0",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"jsdom": "15.1.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "4.12.0",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jsdom": "16.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.13.1",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
"postcss-preset-env": "^6.7.0",
"react-test-renderer": "16.9.0",
"sass-loader": "8.0.0",
"web-ext": "3.1.1",
"webpack": "4.41.0",
"webpack-build-notifier": "1.1.1",
"webpack-chain": "6.0.0",
"react-test-renderer": "16.13.0",
"sass-loader": "8.0.2",
"web-ext": "4.1.0",
"webpack": "4.41.6",
"webpack-build-notifier": "2.0.0",
"webpack-chain": "6.4.0",
"webpack-cli": "^3.3.9",
"zip-webpack-plugin": "3.0.0"
},
"dependencies": {
"@githubprimer/octicons-react": "^8.5.0",
"bootstrap": "4.3.1",
"ky": "^0.14.0",
"bootstrap": "4.4.1",
"ky": "^0.18.0",
"micro-match": "^1.0.1",
"prettier": "^1.18.2",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-router": "5.1.0",
"react-router-dom": "5.1.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-textarea-autosize": "^7.1.0",
"speakingurl": "14.0.1",
"stacktrace-js": "^2.0.0",
"strip-indent": "^3.0.0",
"webextension-polyfill": "^0.4.0"
"webextension-polyfill": "^0.6.0"
}
}
1 change: 1 addition & 0 deletions src/common/adapters/github.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const pages = {
Object.keys(selectors).forEach((variant) => {
const html = pages[variant];

// eslint-disable-next-line jest/valid-describe
describe(`github adapter (${variant})`, () => {
function dom(body = '') {
const { window } = new JSDOM(`<html><body>${body}</body></html>`);
Expand Down
Loading

0 comments on commit b4d5547

Please sign in to comment.