quasarframework / quasar-cli

[DEPRECATED, <= 0.17) Quasar Framework - CLI
https://quasar.dev
MIT License
202 stars 50 forks source link

quasar build -m electron overwrites all previous electron builds in the dist folder #174

Open dannyconnell opened 6 years ago

dannyconnell commented 6 years ago

Software version

OS: Mac Node: 8.11.2 NPM: 5.6.0 Quasar CLI: 0.17.7

What did you get as the error?

Running quasar build -m electron overwrites any previously created electron builds in the dist folder.

What were you expecting?

I would expect previous builds (of a different architecture / platform) to remain, alongside the newly created build. For example, when creating Windows 10 apps, you need to build both a 32-bit version and a 64-bit version - so the desire would be to first create the 64-bit version, then create the 32-bit version without the 64-bit version being deleted.

What steps did you take, to get the error?

electron: {
  packager: {
    platform: 'win32',
    arch: 'x64'
  }
}
electron: {
  packager: {
    platform: 'win32',
    arch: 'ia32'
  }
}