Kholid060 / MkDown2

Online markdown editor
https://mkdown.vercel.app
MIT License
130 stars 21 forks source link

chore(deps-dev): bump vite from 2.4.4 to 2.8.0 #319

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps vite from 2.4.4 to 2.8.0.

Release notes

Sourced from vite's releases.

create-vite@2.8.0

Please refer to CHANGELOG.md for details.

create-vite@2.7.2

Please refer to CHANGELOG.md for details.

create-vite@2.7.1

Please refer to CHANGELOG.md for details.

create-vite@2.7.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

2.8.0 (2022-02-09)

Reduced Footprint

Vite 2.8.0 is almost 1/4 of the 2.7.0 publish size, and the install size has been reduced by 35%. See this thread about each change that reduced Vite's footprint.

Version Publish Size Install Size
2.7.0 12.7MB 25.2MB
2.8.0 4.6MB 17.4MB

Default preview port

New default port for vite preview is 4173 (avoid conflicts in MacOS that took over the 5000 port)

Workers using standard syntax

Workers are detected and bundled when using new URL('path', import.meta.url), replacing the need for the ?worker suffix and aligning Vite with standard patterns. See #6356. Instead of

import MyWorker from './worker.js?worker'
const worker = new MyWorker()

it is now recommended to use

const worker = new Worker(
  new URL('./worker.js', import.meta.url), { type: 'module' }
)

Configuring Workers Bundling

New worker config field adding support for Worker format, plugins and, rollupOptions. See #6351

  • worker.format: 'es' | 'iife' Output format for worker bundle (default: iife).
  • worker.plugins: (Plugin | Plugin[])[] Vite plugins that apply to worker bundle.
  • worker.rollupOptions: RollupOptions Rollup options to build worker bundle.

The worker plugins pipeline isn't shared with the main Vite pipeline, there may be plugins that shouldn't be applied to Workers. If a plugin must be applied to both the main build and the worker build, you need to add a plugin in the main plugins array and another one in the worker.plugins config.

import PluginX from 'vite-plugin-x'
export default {
  plugins: [ PluginX() ]
  worker: [
    format: 'es',
</tr></table> 

... (truncated)

Commits


Dependabot compatibility score

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 rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
vercel[bot] commented 2 years ago

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/kholid060/mkdown/59pMmGWFg6n4YUoecRq6xQyrJhKJ
✅ Preview: https://mkdown-git-dependabot-npmandyarnvite-280-kholid060.vercel.app

dependabot[bot] commented 2 years ago

Superseded by #323.