beekeeper-studio / beekeeper-studio

Modern and easy to use SQL client for MySQL, Postgres, SQLite, SQL Server, and more. Linux, MacOS, and Windows.
https://www.beekeeperstudio.io
Other
15.72k stars 1.03k forks source link

CHORE: Move all vue imports to use the extension + update vue cli to require the .vue extension in the import #2195

Open rathboma opened 2 months ago

rathboma commented 2 months ago

For migrating to Vite / esbuild we need to move away from importing vue files without the .vue extension, because it is not supported.

Tasks:

  1. Change vue cli to fail if .vue extension is not provided
  2. Update all imports to use the .vue extension.

For example:

GOOD: import Component from './Component.vue' BAD: import Component from './Component'

rathboma commented 2 months ago

@ellipsis-dev Can you do this?