airbnb / goji-js

React ❤️ Mini Program
https://goji.js.org
MIT License
224 stars 27 forks source link

Add `parallel` option in goji.config.js #224

Closed malash closed 1 year ago

malash commented 1 year ago

This PR adds a new option parallel in goji.config.js.

interface GojiConfig {
  ...
  parallel?:
    | {
        minimize?: number;
        loader?: number;
      }
    | number;
}

The parallel.minimize corresponds the parallel option within TerserWebpackPlugin, while the parallel.loader corresponds the workers option within thread-loader.