Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
/framework-infoPublic archive

chore(deps): update dependency vite to v4#851

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/vite-4.x

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedDec 12, 2022
edited
Loading

Mend Renovate

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidence
vite (source)^3.1.6 ->^4.0.0ageadoptionpassingconfidence

Release Notes

vitejs/vite

v4.0.4

Compare Source

v4.0.3

Compare Source

v4.0.2

Compare Source

v4.0.1

Compare Source

v4.0.0

Compare Source

Vite 4 Announcement Cover Image

Read the announcement blog post:Announcing Vite 4

Quick links:

Docs in other languages:

Main Changes

This major is smaller in scope compared to Vite 3, with the main objective of upgrading to Rollup 3. We've worked with the ecosystem to ensure a smooth upgrade path for this new major.

Rollup 3

Vite is now usingRollup 3, which allowed us to simplify Vite's internal asset handling and has many improvements. See theRollup 3 release notes here.

Framework Plugins out of the Vite core monorepo

@vitejs/plugin-vue and@vitejs/plugin-react have been part of Vite core monorepo since the first versions of Vite. This helped us to get a close feedback loop when making changes as we were getting both Core and the plugins tested and released together. Withvite-ecosystem-ci we can get this feedback with these plugins developed on independent repositories, so from Vite 4,they have been moved out of the Vite core monorepo. This is meaningful for Vite's framework-agnostic story, and will allow us to build independent teams to maintain each of the plugins. If you have bugs to report or features to request, please create issues on the new repositories moving forward:vitejs/vite-plugin-vue andvitejs/vite-plugin-react.

New React plugin using SWC during development

SWC is now a mature replacement forBabel, especially in the context of React projects. SWC's React Fast Refresh implementation is a lot faster than Babel, and for some projects, it is now a better alternative. From Vite 4, two plugins are available for React projects with different tradeoffs. We believe that both approaches are worth supporting at this point, and we'll continue to explore improvements to both plugins in the future.

@​vitejs/plugin-react

@​vitejs/plugin-react is a plugin that uses esbuild and Babel, achieving fast HMR with a small package footprint and the flexibility of being able to use the babel transform pipeline.

@​vitejs/plugin-react-swc (new)

@​vitejs/plugin-react-swc is a new plugin that uses esbuild during build, but replaces Babel with SWC during development. For big projects that don't require non-standard React extensions, cold start and Hot Module Replacement (HMR) can be significantly faster.

Compatibility

The modern browser build now targetssafari14 by default for wider ES2020 compatibility (https://github.com/vitejs/vite/issues/9063). This means that modern builds can now useBigInt and that thenullish coallessing operator isn't transpiled anymore. If you need to support older browsers, you can add@vitejs/plugin-legacy as usual.

Importing CSS as a string

In Vite 3, importing the default export of a.css file could introduce a double loading of CSS.

importcssStringfrom'./global.css';

This double loading could occur since a.css file will be emitted and it's likely that the CSS string will also be used by the application code — for example, injected by the framework runtime. From Vite 4, the.css default exporthas been deprecated. The?inline query suffix modifier needs to be used in this case, as that doesn't emit the imported.css styles.

importstufffrom'./global.css?inline'
Other features
  • Support for patch-package when pre bundling dependencies (#​10286)
  • Cleaner build logs output (#​10895) and switch tokB to align with browser dev tools (#​10982)
  • Improved error messages during SSR (#​11156)
Features
Bug Fixes
Previous Changelogs
4.0.0-beta.7 (2022-12-08)

See4.0.0-beta.7 changelog

4.0.0-beta.6 (2022-12-08)

See4.0.0-beta.6 changelog

4.0.0-beta.5 (2022-12-08)

See4.0.0-beta.5 changelog

4.0.0-beta.4 (2022-12-07)

See4.0.0-beta.4 changelog

4.0.0-beta.3 (2022-12-07)

See4.0.0-beta.3 changelog

4.0.0-beta.2 (2022-12-07)

See4.0.0-beta.2 changelog

4.0.0-beta.1 (2022-12-06)

See4.0.0-beta.1 changelog

4.0.0-beta.0 (2022-12-05)

See4.0.0-beta.0 changelog

4.0.0-alpha.6 (2022-11-30)

See4.0.0-alpha.6 changelog

4.0.0-alpha.5 (2022-11-22)

See4.0.0-alpha.5 changelog

4.0.0-alpha.4 (2022-11-17)

See4.0.0-alpha.4 changelog

4.0.0-alpha.3 (2022-11-15)

See4.0.0-alpha.3 changelog

4.0.0-alpha.2 (2022-11-13)

See4.0.0-alpha.2 changelog

4.0.0-alpha.1 (2022-11-12)

See4.0.0-alpha.1 changelog

4.0.0-alpha.0 (2022-11-07)

See4.0.0-alpha.0 changelog


Configuration

📅Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated byMend Renovate. View repository job loghere.

@netlify
Copy link

netlifybot commentedDec 12, 2022
edited
Loading

Deploy Preview forframework-info ready!

NameLink
🔨 Latest commitd23f672
🔍 Latest deploy loghttps://app.netlify.com/sites/framework-info/deploys/63967489f6cda70008398355
😎 Deploy Previewhttps://deploy-preview-851--framework-info.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to yourNetlify site settings.

@github-actionsgithub-actionsbot added the type: chorework needed to keep the product and development running smoothly labelDec 12, 2022
Sign up for freeto subscribe to this conversation on GitHub. Already have an account?Sign in.

Reviewers

1 more reviewer

@kodiakhqkodiakhq[bot]kodiakhq[bot] approved these changes

Reviewers whose approvals may not affect merge requirements

At least 1 approving review is required to merge this pull request.

Assignees

No one assigned

Labels

type: chorework needed to keep the product and development running smoothly

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp