Vue-cli typically generates files in the following structure:
- dist
-- demo.html
-- style.css
-- file.commom.js
-- file.commom.js.map
-- file.umd.js
-- file.umd.js.map
-- file.umd.min.js
-- file.umd.min.js.map
However, I prefer to organize them this way:
- dist
-- demo.html
-- css
--- style.css
-- js
--- file.commom.js
--- file.commom.js.map
--- file.umd.js
--- file.umd.js.map
--- file.umd.min.js
--- file.umd.min.js.map
Extra question: Do we really need to use common and umd as part of the filenames? From what I observed in the node_modules directory, none of the projects seem to have these specific names.