Skip to content

Releases: Arkellys/rebuiltron

v6.3.1

31 Jan 09:57

Choose a tag to compare

✏️ Changes

Replace chalk usage with native styleText.

📦 Dependencies

v6.3.0

17 Jan 18:30

Choose a tag to compare

✨ Features

Paths aliases are now automatically read from the paths field of jsconfig.json. Thus, the option srcAlias is no longer used.

v6.2.4

26 Jul 14:45

Choose a tag to compare

📦 Dependencies

v6.2.3

19 Apr 12:09

Choose a tag to compare

📦 Dependencies

v6.2.2

18 Jan 12:58

Choose a tag to compare

🛠️ Fixes

Fix bad import of detect-port's detect method.

v6.2.1

18 Jan 10:58

Choose a tag to compare

📦 Dependencies

v6.2.0

06 Nov 07:28

Choose a tag to compare

✨ Features

Add optional option excludeInProduction, allowing excluding modules from the production bundle:

module.exports = {
  ...
  excludeInProduction: [
    "electron-devtools-installer"
  ]
};

v6.1.0

03 Nov 09:04

Choose a tag to compare

✏️ Changes

Automatically transform lodash imports to support tree shaking.

📦 Dependencies

v6.0.3

22 Sep 15:11

Choose a tag to compare

✏️ Changes

Harmonize log messages to make everything clearer and prettier.

v6.0.2

16 Sep 11:50

Choose a tag to compare

✏️ Changes

Always use mode production for main and preloads.

Some libraries (I'm looking at you, ADM-ZIP) seem to be slower when mode is development. Given the sizes of main and preload files, there is no great difference in compilation time between the two modes. NODE_ENV is still set to development, so the compiled files are still not made for production.