microsoft / monosize

Bundle size tooling for monorepos
MIT License
25 stars 9 forks source link

feat:BREAKING CHANGE - change create*Bundler api to accept callback handler only #53

Closed Hotell closed 5 months ago

Hotell commented 5 months ago

BREAKING CHANGE

This simplifies the bundler api to accept only callback

Before:

bundler: webpackBundler({
    enhanceConfig: config => {
      return config;
    },
  }),

After:

bundler: webpackBundler(config => {
      return config;
  }),

Other features