chore(deps): update dev-dependencies #3835

Merged
konrad merged 2 commits from renovate/dev-dependencies into main 2023-12-01 10:53:49 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@histoire/plugin-screenshot devDependencies patch 0.17.0 -> 0.17.6
@histoire/plugin-vue devDependencies patch 0.17.5 -> 0.17.6
@types/node (source) devDependencies minor 20.9.4 -> 20.10.1
@typescript-eslint/eslint-plugin devDependencies minor 6.12.0 -> 6.13.1
@typescript-eslint/parser devDependencies minor 6.12.0 -> 6.13.1
@vitejs/plugin-vue (source) devDependencies patch 4.5.0 -> 4.5.1
@vue/test-utils devDependencies patch 2.4.2 -> 2.4.3
caniuse-lite devDependencies patch 1.0.30001564 -> 1.0.30001565
esbuild devDependencies patch 0.19.7 -> 0.19.8
eslint-plugin-vue (source) devDependencies minor 9.18.1 -> 9.19.2
histoire devDependencies patch 0.17.5 -> 0.17.6
rollup (source) devDependencies minor 4.5.1 -> 4.6.1
rollup-plugin-visualizer devDependencies patch 5.9.2 -> 5.9.3
vite-plugin-pwa devDependencies patch 0.17.0 -> 0.17.2
vue-tsc devDependencies patch 1.8.22 -> 1.8.24

Release Notes

Akryum/histoire (@​histoire/plugin-screenshot)

v0.17.6

Compare Source

compare changes

🩹 Fixes
  • Fix findUp for Windows (#​640)
  • Update pathe dependencies everywhere (#​641)
🏡 Chore
🤖 CI
❤️ Contributors
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.13.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

v6.13.0

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.13.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

v6.13.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

vuejs/test-utils (@​vue/test-utils)

v2.4.3

Compare Source

What's Changed

Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.2...v2.4.3

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001565

Compare Source

evanw/esbuild (esbuild)

v0.19.8

Compare Source

  • Add a treemap chart to esbuild's bundle analyzer (#​2848)

    The bundler analyzer on esbuild's website (https://esbuild.github.io/analyze/) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens.

  • Allow decorators after the export keyword (#​104)

    Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the export keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the export keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the export keyword too. So esbuild now allows this as well:

    // This old syntax has always been permitted:
    @​decorator export class Foo {}
    @​decorator export default class Foo {}
    
    // This new syntax is now permitted too:
    export @​decorator class Foo {}
    export default @​decorator class Foo {}
    

    In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after interface and export interface but not after export default interface).

  • Pretty-print decorators using the same whitespace as the original

    When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read:

    // Original code
    class Foo {
      @​a @​b @​c abc
      @​x @​y @​z xyz
    }
    
    // Old output
    class Foo {
      @​a
      @​b
      @​c
      abc;
      @​x
      @​y
      @​z
      xyz;
    }
    
    // New output
    class Foo {
      @​a @​b @​c abc;
      @​x @​y @​z xyz;
    }
    
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.19.2

Compare Source

🐛 Bug Fixes

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2

v9.19.1

Compare Source

🐛 Bug Fixes

  • #​2334 Fixed broken config of plugin:vue/vue3-strongly-recommended

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1

v9.19.0

Compare Source

Enhancements

New Rules
New Options

⚙️ Changes

⚙️ Updates

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0

rollup/rollup (rollup)

v4.6.1

Compare Source

2023-11-30

Bug Fixes
  • Resolve a situation where declaring the same var several times was considered a conflict (#​5276)
Pull Requests

v4.6.0

Compare Source

2023-11-26

Features
  • Allow this.addWatchFile in all plugin hooks (#​5270)
Bug Fixes
  • Show helpful error when native binaries are not installed due to an npm issue (#​5267)
  • Do not access this context in this.addWatchFile so it does not need to be bound when passed around (#​5270)
Pull Requests

v4.5.2

Compare Source

2023-11-24

Bug Fixes
  • Handle files with UTF-8 BOM when using the commonjs plugin (#​5268)
Pull Requests
btd/rollup-plugin-visualizer (rollup-plugin-visualizer)

v5.9.3

Compare Source

  • Update dependencies
  • Add Rollup 4.x to the list of supported
vite-pwa/vite-plugin-pwa (vite-plugin-pwa)

v0.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v1.8.24

Compare Source

  • refactor(component-type-helpers): vue 2 types now move to vue-component-type-helpers/vue2 (#​3404)
  • feat(language-core): expose defineEmits's arg and typeArg in parseScriptSetupRanges (#​3710) - thanks @​so1ve
  • fix(language-core): strictTemplates fails to report unknown components (#​3539)
  • fix(language-core): script syntax breaks if script options does not have trailing comma (#​3755)
  • fix(language-core): script syntax breaks if options are enclosed in parentheses (#​3756)
  • fix(language-core): allow using as with multiple <script> blocks (#​3733) - thanks @​so1ve
  • fix(language-core): component type narrowing not working in template
  • fix(language-core): incremental insertion incorrect if input <script setup> tag above <script> tag (#​3743) - thanks @​so1ve
  • fix(language-core): don't camelize attributes for plain elements (#​3750) - thanks @​rchl
  • fix(vscode): syntax highlighting for .prop shorthand (#​3729) - thanks @​so1ve
Volar.js 1.11.1 updates:

Configuration

📅 Schedule: Branch creation - "before 4am" (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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@histoire/plugin-screenshot](https://github.com/Akryum/histoire) | devDependencies | patch | [`0.17.0` -> `0.17.6`](https://renovatebot.com/diffs/npm/@histoire%2fplugin-screenshot/0.17.0/0.17.6) | | [@histoire/plugin-vue](https://github.com/Akryum/histoire) | devDependencies | patch | [`0.17.5` -> `0.17.6`](https://renovatebot.com/diffs/npm/@histoire%2fplugin-vue/0.17.5/0.17.6) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | minor | [`20.9.4` -> `20.10.1`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.4/20.10.1) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.12.0` -> `6.13.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.12.0/6.13.1) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.12.0` -> `6.13.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.12.0/6.13.1) | | [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://github.com/vitejs/vite-plugin-vue)) | devDependencies | patch | [`4.5.0` -> `4.5.1`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.5.0/4.5.1) | | [@vue/test-utils](https://github.com/vuejs/test-utils) | devDependencies | patch | [`2.4.2` -> `2.4.3`](https://renovatebot.com/diffs/npm/@vue%2ftest-utils/2.4.2/2.4.3) | | [caniuse-lite](https://github.com/browserslist/caniuse-lite) | devDependencies | patch | [`1.0.30001564` -> `1.0.30001565`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001564/1.0.30001565) | | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.19.7` -> `0.19.8`](https://renovatebot.com/diffs/npm/esbuild/0.19.7/0.19.8) | | [eslint-plugin-vue](https://eslint.vuejs.org) ([source](https://github.com/vuejs/eslint-plugin-vue)) | devDependencies | minor | [`9.18.1` -> `9.19.2`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.18.1/9.19.2) | | [histoire](https://github.com/Akryum/histoire) | devDependencies | patch | [`0.17.5` -> `0.17.6`](https://renovatebot.com/diffs/npm/histoire/0.17.5/0.17.6) | | [rollup](https://rollupjs.org/) ([source](https://github.com/rollup/rollup)) | devDependencies | minor | [`4.5.1` -> `4.6.1`](https://renovatebot.com/diffs/npm/rollup/4.5.1/4.6.1) | | [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | devDependencies | patch | [`5.9.2` -> `5.9.3`](https://renovatebot.com/diffs/npm/rollup-plugin-visualizer/5.9.2/5.9.3) | | [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | devDependencies | patch | [`0.17.0` -> `0.17.2`](https://renovatebot.com/diffs/npm/vite-plugin-pwa/0.17.0/0.17.2) | | [vue-tsc](https://github.com/vuejs/language-tools) | devDependencies | patch | [`1.8.22` -> `1.8.24`](https://renovatebot.com/diffs/npm/vue-tsc/1.8.22/1.8.24) | --- ### Release Notes <details> <summary>Akryum/histoire (@&#8203;histoire/plugin-screenshot)</summary> ### [`v0.17.6`](https://github.com/Akryum/histoire/blob/HEAD/CHANGELOG.md#v0176) [Compare Source](https://github.com/Akryum/histoire/compare/v0.17.0...v0.17.6) [compare changes](https://github.com/Akryum/histoire/compare/v0.17.5...v0.17.6) ##### 🩹 Fixes - Fix findUp for Windows ([#&#8203;640](https://github.com/Akryum/histoire/pull/640)) - Update pathe dependencies everywhere ([#&#8203;641](https://github.com/Akryum/histoire/pull/641)) ##### 🏡 Chore - Update deps ([08c082c](https://github.com/Akryum/histoire/commit/08c082c)) ##### 🤖 CI - Update node and pnpm ([c3d891d](https://github.com/Akryum/histoire/commit/c3d891d)) - Fix type errors ([#&#8203;642](https://github.com/Akryum/histoire/pull/642)) ##### ❤️ Contributors - Peter Budai <peterbudai@hotmail.com> - Mobyrr - Guillaume Chau ([@&#8203;Akryum](http://github.com/Akryum)) </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v6.13.1`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6131-2023-11-28) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1) **Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v6.13.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6130-2023-11-27) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0) **Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary> ### [`v6.13.1`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6131-2023-11-28) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1) **Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v6.13.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6130-2023-11-27) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0) **Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>vuejs/test-utils (@&#8203;vue/test-utils)</summary> ### [`v2.4.3`](https://github.com/vuejs/test-utils/releases/tag/v2.4.3) [Compare Source](https://github.com/vuejs/test-utils/compare/v2.4.2...v2.4.3) #### What's Changed - types(setProps): setProps to Partial props by [@&#8203;pikax](https://github.com/pikax) in https://github.com/vuejs/test-utils/pull/2241 **Full Changelog**: https://github.com/vuejs/test-utils/compare/v2.4.2...v2.4.3 </details> <details> <summary>browserslist/caniuse-lite (caniuse-lite)</summary> ### [`v1.0.30001565`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001564...1.0.30001565) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001564...1.0.30001565) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.19.8`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0198) [Compare Source](https://github.com/evanw/esbuild/compare/v0.19.7...v0.19.8) - Add a treemap chart to esbuild's bundle analyzer ([#&#8203;2848](https://github.com/evanw/esbuild/issues/2848)) The bundler analyzer on esbuild's website (https://esbuild.github.io/analyze/) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens. - Allow decorators after the `export` keyword ([#&#8203;104](https://github.com/evanw/esbuild/issues/104)) Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the `export` keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the `export` keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the `export` keyword too. So esbuild now allows this as well: ```js // This old syntax has always been permitted: @&#8203;decorator export class Foo {} @&#8203;decorator export default class Foo {} // This new syntax is now permitted too: export @&#8203;decorator class Foo {} export default @&#8203;decorator class Foo {} ``` In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after `interface` and `export interface` but not after `export default interface`). - Pretty-print decorators using the same whitespace as the original When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read: ```js // Original code class Foo { @&#8203;a @&#8203;b @&#8203;c abc @&#8203;x @&#8203;y @&#8203;z xyz } // Old output class Foo { @&#8203;a @&#8203;b @&#8203;c abc; @&#8203;x @&#8203;y @&#8203;z xyz; } // New output class Foo { @&#8203;a @&#8203;b @&#8203;c abc; @&#8203;x @&#8203;y @&#8203;z xyz; } ``` </details> <details> <summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary> ### [`v9.19.2`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.2) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2) #### 🐛 Bug Fixes - [#&#8203;2336](https://github.com/vuejs/eslint-plugin-vue/issues/2336) Fixed crash for TSFunctionType with `type-literal` option in [`vue/define-emits-declaration`](https://eslint.vuejs.org/rules/define-emits-declaration.html) rule **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2 ### [`v9.19.1`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.1) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1) #### 🐛 Bug Fixes - [#&#8203;2334](https://github.com/vuejs/eslint-plugin-vue/issues/2334) Fixed broken config of `plugin:vue/vue3-strongly-recommended` **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1 ### [`v9.19.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0) #### ✨ Enhancements ##### New Rules - [#&#8203;2312](https://github.com/vuejs/eslint-plugin-vue/issues/2312) Added [`vue/no-unused-emit-declarations`](https://eslint.vuejs.org/rules/no-unused-emit-declarations.html) rule that disallows unused emit declarations. - [#&#8203;2280](https://github.com/vuejs/eslint-plugin-vue/issues/2280) Added [`vue/v-if-else-key`](https://eslint.vuejs.org/rules/v-if-else-key.html) rule that requires key attribute for conditionally rendered repeated components. ##### New Options - [#&#8203;2315](https://github.com/vuejs/eslint-plugin-vue/issues/2315) Added `type-literal` option in [`vue/define-emits-declaration`](https://eslint.vuejs.org/rules/define-emits-declaration.html) rule. - [#&#8203;2297](https://github.com/vuejs/eslint-plugin-vue/issues/2297) Added `externalIgnores` option in [`vue/singleline-html-element-content-newline`](https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html) rule. - [#&#8203;2314](https://github.com/vuejs/eslint-plugin-vue/issues/2314) Added `ignore` option in [`vue/no-deprecated-slot-attribute`](https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html) rule. #### ⚙️ Changes - [#&#8203;2320](https://github.com/vuejs/eslint-plugin-vue/issues/2320) Changed [`vue/v-on-event-hyphenation`](https://eslint.vuejs.org/rules/v-on-event-hyphenation.html) rule to be auto-fixable by default in Vue 3. - [#&#8203;2330](https://github.com/vuejs/eslint-plugin-vue/issues/2330) Changed stylistic rules for expressions in `<template>` to extend from [ESLint Stylistic](https://eslint.style/). #### ⚙️ Updates - [#&#8203;2327](https://github.com/vuejs/eslint-plugin-vue/issues/2327) Fixed avoid calling `typeParameters` getter. - [#&#8203;2331](https://github.com/vuejs/eslint-plugin-vue/issues/2331) Improved compatibility with [planned changes in ESLint v9](https://eslint.org/blog/2023/09/preparing-custom-rules-eslint-v9/). **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0 </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v4.6.1`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#461) [Compare Source](https://github.com/rollup/rollup/compare/v4.6.0...v4.6.1) *2023-11-30* ##### Bug Fixes - Resolve a situation where declaring the same `var` several times was considered a conflict ([#&#8203;5276](https://github.com/rollup/rollup/issues/5276)) ##### Pull Requests - [#&#8203;5275](https://github.com/rollup/rollup/pull/5275): Add TNG as special sponsor ([@&#8203;lukastaegert](https://github.com/lukastaegert)) - [#&#8203;5276](https://github.com/rollup/rollup/pull/5276): Allow to redeclare parameters multiple times in nested scopes ([@&#8203;lukastaegert](https://github.com/lukastaegert)) ### [`v4.6.0`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#460) [Compare Source](https://github.com/rollup/rollup/compare/v4.5.2...v4.6.0) *2023-11-26* ##### Features - Allow `this.addWatchFile` in all plugin hooks ([#&#8203;5270](https://github.com/rollup/rollup/issues/5270)) ##### Bug Fixes - Show helpful error when native binaries are not installed due to an `npm` issue ([#&#8203;5267](https://github.com/rollup/rollup/issues/5267)) - Do not access `this` context in `this.addWatchFile` so it does not need to be bound when passed around ([#&#8203;5270](https://github.com/rollup/rollup/issues/5270)) ##### Pull Requests - [#&#8203;5267](https://github.com/rollup/rollup/pull/5267): Add friendly error for npm bug ([@&#8203;sapphi-red](https://github.com/sapphi-red)) - [#&#8203;5270](https://github.com/rollup/rollup/pull/5270): Allow this.addWatchFile in all hooks ([@&#8203;lukastaegert](https://github.com/lukastaegert)) - [#&#8203;5272](https://github.com/rollup/rollup/pull/5272): Debug deployed graphs ([@&#8203;lukastaegert](https://github.com/lukastaegert)) ### [`v4.5.2`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#452) [Compare Source](https://github.com/rollup/rollup/compare/v4.5.1...v4.5.2) *2023-11-24* ##### Bug Fixes - Handle files with UTF-8 BOM when using the commonjs plugin ([#&#8203;5268](https://github.com/rollup/rollup/issues/5268)) ##### Pull Requests - [#&#8203;5268](https://github.com/rollup/rollup/pull/5268): fix: strip BOM before calling transform hook ([@&#8203;TrickyPi](https://github.com/TrickyPi)) - [#&#8203;5269](https://github.com/rollup/rollup/pull/5269): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) </details> <details> <summary>btd/rollup-plugin-visualizer (rollup-plugin-visualizer)</summary> ### [`v5.9.3`](https://github.com/btd/rollup-plugin-visualizer/blob/HEAD/CHANGELOG.md#593) [Compare Source](https://github.com/btd/rollup-plugin-visualizer/compare/v5.9.2...v5.9.3) - Update dependencies - Add Rollup 4.x to the list of supported </details> <details> <summary>vite-pwa/vite-plugin-pwa (vite-plugin-pwa)</summary> ### [`v0.17.2`](https://github.com/vite-pwa/vite-plugin-pwa/releases/tag/v0.17.2) [Compare Source](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.1...v0.17.2) #####    🐞 Bug Fixes - Expose `injectRegister` in pwa info  -  by [@&#8203;userquin](https://github.com/userquin) in https://github.com/vite-pwa/vite-plugin-pwa/issues/611 [<samp>(ceab9)</samp>](https://github.com/vite-pwa/vite-plugin-pwa/commit/ceab94a) #####     [View changes on GitHub](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.1...v0.17.2) ### [`v0.17.1`](https://github.com/vite-pwa/vite-plugin-pwa/releases/tag/v0.17.1) [Compare Source](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.0...v0.17.1) #####    🚀 Features - Add 'script-defer' option for `injectRegister` script  -  by [@&#8203;LouisMazel](https://github.com/LouisMazel) and [@&#8203;userquin](https://github.com/userquin) in https://github.com/vite-pwa/vite-plugin-pwa/issues/605 [<samp>(f1833)</samp>](https://github.com/vite-pwa/vite-plugin-pwa/commit/f183340) #####    🐞 Bug Fixes - Remove sw cache storage entries when using self destroying option  -  by [@&#8203;userquin](https://github.com/userquin) in https://github.com/vite-pwa/vite-plugin-pwa/issues/609 [<samp>(df8b4)</samp>](https://github.com/vite-pwa/vite-plugin-pwa/commit/df8b4b0) #####     [View changes on GitHub](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.0...v0.17.1) </details> <details> <summary>vuejs/language-tools (vue-tsc)</summary> ### [`v1.8.24`](https://github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1824-20231129) [Compare Source](https://github.com/vuejs/language-tools/compare/v1.8.22...v1.8.24) - refactor(component-type-helpers): vue 2 types now move to `vue-component-type-helpers/vue2` ([#&#8203;3404](https://github.com/vuejs/language-tools/issues/3404)) - feat(language-core): expose `defineEmits`'s `arg` and `typeArg` in `parseScriptSetupRanges` ([#&#8203;3710](https://github.com/vuejs/language-tools/issues/3710)) - thanks [@&#8203;so1ve](https://github.com/so1ve) - fix(language-core): `strictTemplates` fails to report unknown components ([#&#8203;3539](https://github.com/vuejs/language-tools/issues/3539)) - fix(language-core): script syntax breaks if script options does not have trailing comma ([#&#8203;3755](https://github.com/vuejs/language-tools/issues/3755)) - fix(language-core): script syntax breaks if options are enclosed in parentheses ([#&#8203;3756](https://github.com/vuejs/language-tools/issues/3756)) - fix(language-core): allow using `as` with multiple `<script>` blocks ([#&#8203;3733](https://github.com/vuejs/language-tools/issues/3733)) - thanks [@&#8203;so1ve](https://github.com/so1ve) - fix(language-core): component type narrowing not working in template - fix(language-core): incremental insertion incorrect if input `<script setup>` tag above `<script>` tag ([#&#8203;3743](https://github.com/vuejs/language-tools/issues/3743)) - thanks [@&#8203;so1ve](https://github.com/so1ve) - fix(language-core): don't camelize attributes for plain elements ([#&#8203;3750](https://github.com/vuejs/language-tools/issues/3750)) - thanks [@&#8203;rchl](https://github.com/rchl) - fix(vscode): syntax highlighting for `.prop` shorthand ([#&#8203;3729](https://github.com/vuejs/language-tools/issues/3729)) - thanks [@&#8203;so1ve](https://github.com/so1ve) ##### Volar.js 1.11.1 updates: - fix: browser integration no longer requires node polyfill (https://github.com/volarjs/volar.js/pull/70) - fix: document continuous change merge results are incorrect in WebStorm (https://github.com/volarjs/volar.js/pull/77) - thanks [@&#8203;browsnet](https://github.com/browsnet) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" (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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41MC4xIiwidXBkYXRlZEluVmVyIjoiMzcuNTAuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-11-24 00:13:43 +00:00
renovate force-pushed renovate/dev-dependencies from a4883dc942 to caaad18e09 2023-11-24 00:13:48 +00:00 Compare
renovate changed title from chore(deps): update dependency @types/node to v20.9.5 to chore(deps): update dev-dependencies 2023-11-24 07:13:23 +00:00
renovate force-pushed renovate/dev-dependencies from caaad18e09 to 06e59cac75 2023-11-24 07:13:29 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 06e59cac75 to ea692b2b7e 2023-11-24 09:13:43 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from ea692b2b7e to 117a7a2c16 2023-11-24 16:13:32 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 117a7a2c16 to e516762d75 2023-11-25 15:14:00 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from e516762d75 to 84f814adaa 2023-11-25 18:14:18 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 84f814adaa to ed5732bbed 2023-11-25 20:14:14 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from ed5732bbed to 58084ade53 2023-11-26 14:14:30 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 58084ade53 to 0d009ff0f2 2023-11-26 23:14:49 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 0d009ff0f2 to f96eaaed89 2023-11-27 07:14:40 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from f96eaaed89 to 662247fa6e 2023-11-27 18:14:09 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 662247fa6e to 118736b488 2023-11-28 10:13:42 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 118736b488 to be64f80bc0 2023-11-28 22:15:05 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from be64f80bc0 to 0259dc6756 2023-11-29 10:14:40 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 0259dc6756 to 0bd55b5143 2023-11-29 20:14:12 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 0bd55b5143 to d29b8363c2 2023-11-30 05:14:20 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from d29b8363c2 to adcc78f83f 2023-11-30 06:13:40 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from adcc78f83f to d40ecc744c 2023-11-30 09:14:11 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from d40ecc744c to 00aaae2400 2023-12-01 07:13:48 +00:00 Compare
konrad added 1 commit 2023-12-01 10:32:45 +00:00
continuous-integration/drone/pr Build is passing Details
5748ad4bd4
chore(deps): update lockfile
konrad approved these changes 2023-12-01 10:36:44 +00:00
konrad scheduled this pull request to auto merge when all checks succeed 2023-12-01 10:36:51 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://3835-renovate-dev-dependencies--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://3835-renovate-dev-dependencies--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit 30046c7ff5 into main 2023-12-01 10:53:49 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.