Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: update all dev deps #27

Merged
merged 1 commit into from
Jun 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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'

@@ -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
Loading