We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196a8a5 commit 2591d2aCopy full SHA for 2591d2a
rollup/utils.js
@@ -19,7 +19,7 @@ export function mergePlugins(pluginsA, pluginsB) {
19
// Hacky way to make sure the ones we care about end up where they belong in the order. (Really the TS and sucrase
20
// plugins are tied - both should come first - but they're mutually exclusive, so they can come in arbitrary order
21
// here.)
22
- const order = ['typescript', 'sucrase', '...', 'terser', 'license'];
+ const order = ['excludeReplay', 'typescript', 'sucrase', '...', 'terser', 'license'];
23
const sortKeyA = order.includes(a.name) ? a.name : '...';
24
const sortKeyB = order.includes(b.name) ? b.name : '...';
25
0 commit comments