Skip to content

Commit

Permalink
chore: update all dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rpearce committed Jun 30, 2024
1 parent 1c1ef6a commit 53fcd80
Show file tree
Hide file tree
Showing 4 changed files with 3,632 additions and 8,580 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
cache: 'npm'

- name: Install deps without updating package-lock.json
run: npm i --no-save
run: npm i --no-save --legacy-peer-deps

- name: Run the CI build
run: npm run ci
5 changes: 3 additions & 2 deletions example/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint react/prop-types: 0 */

import React, { Component, createRef } from 'react'
import ReactDOM from 'react-dom'
import { createRoot } from 'react-dom/client'

import withForwardedRef from '../dist/esm'

Expand Down Expand Up @@ -31,4 +31,5 @@ class App extends Component {
}

const container = document.querySelector('[data-app]')
ReactDOM.render(<App />, container)
const root = createRoot(container)
root.render(<App />)
Loading

0 comments on commit 53fcd80

Please sign in to comment.