Skip to content

Commit

Permalink
Fix Node 20 incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
soren121 committed Aug 27, 2024
1 parent 3aa5cbc commit 7a776ca
Show file tree
Hide file tree
Showing 5 changed files with 1,279 additions and 2,150 deletions.
6 changes: 4 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import react from 'eslint-plugin-react'
import tseslint from 'typescript-eslint'

export default tseslint.config(
tseslint.configs.eslintRecommended,
{
ignores: [
'**/lib/',
Expand All @@ -15,7 +14,10 @@ export default tseslint.config(
'**/stylis.min.js',
'demo/dist',
'site/out'
],
]
},
tseslint.configs.eslintRecommended,
{
plugins: {
'@emotion': emotion,
react
Expand Down
2 changes: 1 addition & 1 deletion scripts/benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"babel-plugin-react-native-web": "^0.17.5",
"d3-scale-chromatic": "^3.0.0",
"http-server": "^14.0.0",
"parcel": "^2.0.1",
"parcel": "^2.12.0",
"puppeteer": "^11.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @jsx jsx */
import React from 'react'
import { viewStyle } from './View'
import { css, jsx } from '@emotion/react'
import { css } from '@emotion/react'

const Box = ({
color,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** @jsx jsx */
import { css, jsx } from '@emotion/react'
import React from 'react'
import { css } from '@emotion/react'

const Dot = ({ size, x, y, children, color }) => (
<div
Expand Down
Loading

0 comments on commit 7a776ca

Please sign in to comment.