Skip to content

Commit ea3d411

Browse files
committed
build: update deps
1 parent 990109a commit ea3d411

File tree

2 files changed

+26
-29
lines changed

2 files changed

+26
-29
lines changed

cypress/tests/system/styles/precedence.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@ const styleProps = [
4040
];
4141

4242
const getProps = (styleProps) =>
43-
styleProps.reduce((acc, {name, value}) => {
44-
acc[name] = value;
45-
return acc;
46-
}, {});
43+
Object.fromEntries(styleProps.map(({name, value}) => [name, value]));
4744

4845
describe('Precendence', () => {
4946
it('should take style props precedence in the order of style > variant > shorthandProps > styles', () => {

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,33 @@
3131
"index.d.ts"
3232
],
3333
"dependencies": {
34-
"fela": "^11.6.1",
35-
"fela-dom": "^11.6.1",
36-
"fela-enforce-longhands": "^11.6.1",
37-
"fela-monolithic": "^11.6.1",
38-
"fela-plugin-responsive-value": "^11.6.1",
39-
"fela-preset-web": "^11.6.1",
40-
"hast-to-hyperscript": "^10.0.0",
34+
"fela": "^11.7.0",
35+
"fela-dom": "^11.7.0",
36+
"fela-enforce-longhands": "^11.7.0",
37+
"fela-monolithic": "^11.7.0",
38+
"fela-plugin-responsive-value": "^11.7.0",
39+
"fela-preset-web": "^11.7.0",
40+
"hast-to-hyperscript": "^10.0.1",
4141
"svg-parser": "^2.0.4",
4242
"uinix-theme": "^0.2.3"
4343
},
4444
"devDependencies": {
45-
"@babel/core": "^7.14.6",
46-
"@babel/preset-env": "^7.14.4",
45+
"@babel/core": "^7.15.8",
46+
"@babel/preset-env": "^7.15.8",
4747
"@babel/preset-react": "^7.13.13",
48-
"@cypress/code-coverage": "^3.9.8",
49-
"@cypress/react": "^5.8.1",
50-
"@cypress/webpack-dev-server": "^1.4.0",
51-
"@types/react": "^17.0.14",
48+
"@cypress/code-coverage": "^3.9.11",
49+
"@cypress/react": "^5.10.1",
50+
"@cypress/webpack-dev-server": "^1.6.0",
51+
"@types/react": "^17.0.27",
5252
"@types/svg-parser": "^2.0.2",
53-
"@types/tape": "^4.13.0",
53+
"@types/tape": "^4.13.2",
5454
"babel-loader": "^8.2.2",
5555
"babel-plugin-istanbul": "^6.0.0",
56-
"c8": "^7.7.3",
57-
"cypress": "^7.7.0",
56+
"c8": "^7.10.0",
57+
"cypress": "^8.5.0",
5858
"eslint-config-xo-react": "^0.25.0",
59-
"eslint-plugin-cypress": "^2.11.3",
60-
"eslint-plugin-react": "^7.24.0",
59+
"eslint-plugin-cypress": "^2.12.1",
60+
"eslint-plugin-react": "^7.26.1",
6161
"eslint-plugin-react-hooks": "^4.2.0",
6262
"htm": "^3.1.0",
6363
"html-webpack-plugin": "^5.3.1",
@@ -66,14 +66,14 @@
6666
"preact": "^10.5.14",
6767
"react": "^17.0.2",
6868
"react-dom": "^17.0.2",
69-
"solid-js": "^1.0.3",
70-
"tape": "^5.2.2",
71-
"type-coverage": "^2.17.5",
72-
"typescript": "^4.3.5",
69+
"solid-js": "^1.1.6",
70+
"tape": "^5.3.1",
71+
"type-coverage": "^2.18.2",
72+
"typescript": "^4.4.3",
7373
"uinix-scripts": "^0.1.2",
74-
"webpack": "^5.45.1",
75-
"webpack-dev-server": "^3.11.2",
76-
"xo": "^0.42.0"
74+
"webpack": "^5.58.1",
75+
"webpack-dev-server": "^4.3.1",
76+
"xo": "^0.45.0"
7777
},
7878
"scripts": {
7979
"build": "npm run clean && tsc && type-coverage",

0 commit comments

Comments
 (0)