Skip to content

Commit

Permalink
fix(styled-system): upgrade to version 5.0.12
Browse files Browse the repository at this point in the history
affects: @datepicker-react/styled
  • Loading branch information
tresko committed Jul 1, 2019
1 parent 416d652 commit 6ce33b1
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 133 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
"@storybook/addon-viewport": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@testing-library/react": "^8.0.1",
"@testing-library/react": "^8.0.4",
"@testing-library/react-hooks": "^1.1.0",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/storybook__addon-actions": "^3.4.3",
Expand All @@ -71,14 +72,14 @@
"cz-lerna-changelog": "^2.0.2",
"date-fns": "^1.30.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.1",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.5.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^2.7.0",
"is-ci-cli": "^1.1.1",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
Expand All @@ -89,22 +90,21 @@
"jest-runner-eslint": "^0.7.4",
"jest-serializer-html": "^7.0.0",
"jest-styled-components": "^6.3.3",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-select-projects": "^0.1.2",
"jest-watch-typeahead": "^0.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.16.2",
"rollup": "^1.16.3",
"rollup-plugin-analyzer": "^3.0.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.4",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/hooks/src/useDatepicker/useDatepicker.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {advanceTo, clear} from 'jest-date-mock'
import {renderHook, act} from 'react-hooks-testing-library'
import {renderHook, act} from '@testing-library/react-hooks'
import {isEqual, format, isSameDay} from 'date-fns'
import {
getCurrentYearMonthAndDate,
Expand Down
2 changes: 1 addition & 1 deletion packages/hooks/src/useDay/useDay.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {renderHook, act} from 'react-hooks-testing-library'
import {renderHook, act} from '@testing-library/react-hooks'
import useDay from '.'

const date = new Date(2019, 2, 1, 0, 0, 0)
Expand Down
2 changes: 1 addition & 1 deletion packages/hooks/src/useMonth/useMonth.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {renderHook} from 'react-hooks-testing-library'
import {renderHook} from '@testing-library/react-hooks'
import {format} from 'date-fns'
import {useMonth, getDays, getWeekdayLabels} from '.'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import {renderHook} from 'react-hooks-testing-library'
import {renderHook} from '@testing-library/react-hooks'
import {ThemeProvider} from 'styled-components'
import useThemeProps from '.'

Expand Down
Loading

0 comments on commit 6ce33b1

Please sign in to comment.