Astro: @astrojs/[email protected] Release

Release date:
May 23, 2024
Previous version:
@astrojs/[email protected] (released May 9, 2024)
Magnitude:
6,995 Diff Delta
Contributors:
17 total committers
Data confidence:
Commits:

94 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored May 23, 2024
Authored May 15, 2024
Authored May 22, 2024
Authored May 22, 2024
Authored May 16, 2024
Authored May 18, 2024
Authored May 9, 2024
Authored May 22, 2024
Authored May 9, 2024
Authored May 17, 2024
Authored May 13, 2024

Top Contributors in @astrojs/[email protected]

ematipico
bholmesdev
Princesseuh
adrianlyjak
itsMapleLeaf
Xetera
niklas-wortmann
V3RON
BryceRussell
mingjunlu

Directory Browser for @astrojs/[email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #11055 b92de22 Thanks @niklas-wortmann! - Updates the devtools type to allow passing VueDevToolsOptions

    For more customization, you can pass options that the Vue DevTools Vite Plugin supports. (Note: appendTo is not supported.) For example, you can set launchEditor to your preferred editor if you are not using Visual Studio Code:

    ```js title="astro.config.mjs" import { defineConfig } from 'astro/config'; import vue from '@astrojs/vue';

    export default defineConfig({ // ... integrations: [ vue({ devtools: { launchEditor: 'webstorm' }, }), ], }); ```