Skip to content

Commit 5c6fd27

Browse files
authored
fix(core): remove Vite build size limit (#730)
<!-- CURSOR_SUMMARY --> > [!NOTE] > **Low Risk** > Small, localized build-script change; risk is limited to potentially allowing larger bundles to be produced without failing CI. > > **Overview** > Stops the `packages/core` Vite bundling pipeline from including the `bundle-limit` plugin by filtering it out alongside `rollup-plugin-license`, effectively removing build-time bundle size enforcement. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 91d1199. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 027404d commit 5c6fd27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ async function buildVite() {
209209
typeof plugin === 'object' &&
210210
plugin !== null &&
211211
'name' in plugin &&
212-
plugin.name === 'rollup-plugin-license'
212+
(plugin.name === 'rollup-plugin-license' || plugin.name === 'bundle-limit')
213213
);
214214
}),
215215
];

0 commit comments

Comments
 (0)