Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jigsawye committed May 31, 2021
1 parent e9ec926 commit 3096c52
Show file tree
Hide file tree
Showing 4 changed files with 862 additions and 876 deletions.
1 change: 1 addition & 0 deletions jest.config.js
@@ -1,5 +1,6 @@
module.exports = {
rootDir: __dirname,
testEnvironment: 'jsdom',
coverageDirectory: './coverage/',
transformIgnorePatterns: ['/node_modules/'],
testPathIgnorePatterns: ['/node_modules/', 'lib', '/test/'],
Expand Down
32 changes: 16 additions & 16 deletions package.json
Expand Up @@ -50,13 +50,13 @@
"@reach/rect": "^0.15.0",
"@reach/tooltip": "^0.15.0",
"@reach/utils": "^0.15.0",
"@react-spring/web": "^9.1.2",
"date-fns": "^2.21.3",
"@react-spring/web": "^9.2.1",
"date-fns": "^2.22.1",
"downshift": "^6.1.3",
"downshift3": "npm:downshift@3.2.12",
"fuzzaldrin-plus": "^0.6.0",
"lodash.debounce": "^4.0.8",
"polished": "^4.1.2",
"polished": "^4.1.3",
"ramda": "^0.27.1",
"rc-picker": "^2.5.7",
"react": "^17.0.1",
Expand Down Expand Up @@ -85,7 +85,7 @@
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@semantic-release/changelog": "^5.0.1",
Expand All @@ -98,49 +98,49 @@
"@types/jest": "^26.0.23",
"@types/lodash.debounce": "^4.0.6",
"@types/ramda": "^0.27.38",
"@types/react": "17.0.6",
"@types/react": "17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-helmet": "^6.1.1",
"@types/react-window": "^1.8.3",
"@types/styled-components": "5.1.9",
"@types/styled-system": "^5.1.11",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-jest": "^27.0.2",
"babel-plugin-ramda": "^2.0.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-typescript-to-proptypes": "^1.4.2",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint": "^7.27.0",
"eslint-config-yoctol": "^0.26.2",
"eslint-import-resolver-jest": "^3.0.0",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-typescript": "^0.14.0",
"formik": "^2.2.7",
"formik": "^2.2.8",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest": "^27.0.3",
"jest-styled-components": "^7.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prettier-package-json": "^2.5.0",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.48.0",
"rollup": "^2.50.5",
"rollup-plugin-commonjs": "^10.1.0",
"semantic-release": "^17.4.3",
"stylelint": "13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-yoctol": "^5.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "4.2.4",
"typescript": "4.3.2",
"yup": "^0.32.9"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/Badge/__tests__/Badge.spec.tsx
Expand Up @@ -102,6 +102,6 @@ describe('Backdrop', () => {
expect(container).toHaveTextContent('1');

userEvent.click(decrementBtn);
waitFor(() => expect(container).not.toHaveTextContent('0'));
await waitFor(() => expect(container).not.toHaveTextContent('0'));
});
});

0 comments on commit 3096c52

Please sign in to comment.