PWA-Vite-React-Boilerplate
                                
                                
                                
                                    PWA-Vite-React-Boilerplate copied to clipboard
                            
                            
                            
                        Bump @vitejs/plugin-react from 4.2.1 to 4.3.0
Bumps @vitejs/plugin-react from 4.2.1 to 4.3.0.
Release notes
Sourced from @vitejs/plugin-react's releases.
v4.3.0
Fix support for React compiler
Don't set
retainLines: truewhen the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:export default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', {}]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
Changelog
Sourced from @vitejs/plugin-react's changelog.
4.3.0 (2024-05-22)
Fix support for React compiler
Don't set
retainLines: truewhen the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:export default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', {}]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Deploy Preview for pwa-vite-react-boilerplate ready!
| Name | Link | 
|---|---|
| Latest commit | e0d52546cf74f53daa9398b1f80924ea39a7c85e | 
| Latest deploy log | https://app.netlify.com/sites/pwa-vite-react-boilerplate/deploys/664ec0e827586a0008ae6cd7 | 
| Deploy Preview | https://deploy-preview-283--pwa-vite-react-boilerplate.netlify.app | 
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link.  | 
To edit notification comments on pull requests, go to your Netlify site configuration.
Superseded by #286.