Skip to content

Commit 6ce33b1

Browse files
committed
fix(styled-system): upgrade to version 5.0.12
affects: @datepicker-react/styled
1 parent 416d652 commit 6ce33b1

File tree

6 files changed

+84
-133
lines changed

6 files changed

+84
-133
lines changed

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
"@storybook/addon-viewport": "^5.1.9",
5656
"@storybook/addons": "^5.1.9",
5757
"@storybook/react": "^5.1.9",
58-
"@testing-library/react": "^8.0.1",
58+
"@testing-library/react": "^8.0.4",
59+
"@testing-library/react-hooks": "^1.1.0",
5960
"@types/jest": "^24.0.15",
6061
"@types/react": "^16.8.22",
6162
"@types/storybook__addon-actions": "^3.4.3",
@@ -71,14 +72,14 @@
7172
"cz-lerna-changelog": "^2.0.2",
7273
"date-fns": "^1.30.1",
7374
"eslint": "^5.16.0",
74-
"eslint-config-prettier": "^5.0.0",
75+
"eslint-config-prettier": "^6.0.0",
7576
"eslint-config-react-app": "^4.0.1",
7677
"eslint-plugin-flowtype": "^3.11.1",
77-
"eslint-plugin-import": "^2.17.3",
78-
"eslint-plugin-jsx-a11y": "^6.2.1",
79-
"eslint-plugin-react": "^7.14.1",
80-
"eslint-plugin-react-hooks": "^1.6.0",
81-
"husky": "^2.5.0",
78+
"eslint-plugin-import": "^2.18.0",
79+
"eslint-plugin-jsx-a11y": "^6.2.3",
80+
"eslint-plugin-react": "^7.14.2",
81+
"eslint-plugin-react-hooks": "^1.6.1",
82+
"husky": "^2.7.0",
8283
"is-ci-cli": "^1.1.1",
8384
"jest": "^24.8.0",
8485
"jest-config": "^24.8.0",
@@ -89,22 +90,21 @@
8990
"jest-runner-eslint": "^0.7.4",
9091
"jest-serializer-html": "^7.0.0",
9192
"jest-styled-components": "^6.3.3",
92-
"jest-watch-select-projects": "^0.1.1",
93+
"jest-watch-select-projects": "^0.1.2",
9394
"jest-watch-typeahead": "^0.3.1",
9495
"lerna": "^3.15.0",
9596
"lint-staged": "^8.2.1",
9697
"npm-run-all": "^4.1.5",
9798
"prettier": "^1.18.2",
9899
"react": "^16.8.6",
99100
"react-dom": "^16.8.6",
100-
"react-hooks-testing-library": "^0.6.0",
101101
"react-test-renderer": "^16.8.6",
102102
"rimraf": "^2.6.3",
103-
"rollup": "^1.16.2",
103+
"rollup": "^1.16.3",
104104
"rollup-plugin-analyzer": "^3.0.1",
105105
"rollup-plugin-babel": "^4.3.3",
106-
"rollup-plugin-commonjs": "^10.0.0",
107-
"rollup-plugin-node-resolve": "^5.0.4",
106+
"rollup-plugin-commonjs": "^10.0.1",
107+
"rollup-plugin-node-resolve": "^5.2.0",
108108
"rollup-plugin-replace": "^2.2.0",
109109
"rollup-plugin-terser": "^5.0.0",
110110
"rollup-plugin-typescript2": "^0.21.2",

packages/hooks/src/useDatepicker/useDatepicker.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {advanceTo, clear} from 'jest-date-mock'
2-
import {renderHook, act} from 'react-hooks-testing-library'
2+
import {renderHook, act} from '@testing-library/react-hooks'
33
import {isEqual, format, isSameDay} from 'date-fns'
44
import {
55
getCurrentYearMonthAndDate,

packages/hooks/src/useDay/useDay.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {renderHook, act} from 'react-hooks-testing-library'
1+
import {renderHook, act} from '@testing-library/react-hooks'
22
import useDay from '.'
33

44
const date = new Date(2019, 2, 1, 0, 0, 0)

packages/hooks/src/useMonth/useMonth.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {renderHook} from 'react-hooks-testing-library'
1+
import {renderHook} from '@testing-library/react-hooks'
22
import {format} from 'date-fns'
33
import {useMonth, getDays, getWeekdayLabels} from '.'
44

packages/styled/src/hooks/useThemeProps/useThemeProps.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import {renderHook} from 'react-hooks-testing-library'
2+
import {renderHook} from '@testing-library/react-hooks'
33
import {ThemeProvider} from 'styled-components'
44
import useThemeProps from '.'
55

0 commit comments

Comments
 (0)