Skip to content

Update dependency @symfony/webpack-encore to v4.7.0

Renovate Bot requested to merge renovate/symfony-webpack-encore-4.x-lockfile into main

This MR contains the following updates:

Package Type Update Change
@symfony/webpack-encore devDependencies minor 4.6.1 -> 4.7.0

Release Notes

symfony/webpack-encore (@​symfony/webpack-encore)

v4.7.0

Compare Source

Features

Enabling JSX support for Vue 3 is done with the Encore.enableVueLoader():

Encore.enableVueLoader(() => {}, { 
    useJsx: true,
    version: 3,
});

If you don't have a custom Babel configuration, then you're all set! But if you do, you may need to adjust it to add @vue/babel-plugin-jsx plugin to your Babel configuration:

// babel.config.js
module.exports = {
    plugins: [
        '@​vue/babel-plugin-jsx'
    ]
};
Deprecations
Internal

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

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

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


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

This MR has been generated by Renovate Bot.

Edited by Renovate Bot

Merge request reports

Loading