Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 6 commits into from
Mar 22, 2024

Conversation

Hotell
Copy link
Contributor

@Hotell Hotell commented Mar 22, 2024

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

  • introduces unified createBundler shared types
    • changes dep graph - bundler packages now rely on monosize
image
  • updates cli docs

@Hotell Hotell marked this pull request as ready for review March 22, 2024 11:27
@Hotell Hotell requested review from layershifter and a team as code owners March 22, 2024 11:27
@Hotell Hotell merged commit 93a2578 into microsoft:main Mar 22, 2024
4 checks passed
@Hotell Hotell deleted the bundlers/refactor-to-simple-callback branch March 22, 2024 12:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants