Hi how can i migrate my old webpack template to new one ?
I believe there's no automated way to do this right now. You'll need to manually run a diff against the changes.
Use vue init webpack vue-webpack-fresh to get an up-to-date base template and then use a diff tool such as meld to see what the changes are.
You can also "re-init" the template directly in existing project and then resolve the changes. I've done it multiple times, it's not that bad :).
Most helpful comment
I believe there's no automated way to do this right now. You'll need to manually run a diff against the changes.
Use
vue init webpack vue-webpack-freshto get an up-to-date base template and then use a diff tool such as meld to see what the changes are.