Skip to content

Commit 2591d2a

Browse files
committed
Revert "remove unnecessary plugin sort order modification"
This reverts commit 527f34d.
1 parent 196a8a5 commit 2591d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function mergePlugins(pluginsA, pluginsB) {
1919
// Hacky way to make sure the ones we care about end up where they belong in the order. (Really the TS and sucrase
2020
// plugins are tied - both should come first - but they're mutually exclusive, so they can come in arbitrary order
2121
// here.)
22-
const order = ['typescript', 'sucrase', '...', 'terser', 'license'];
22+
const order = ['excludeReplay', 'typescript', 'sucrase', '...', 'terser', 'license'];
2323
const sortKeyA = order.includes(a.name) ? a.name : '...';
2424
const sortKeyB = order.includes(b.name) ? b.name : '...';
2525

0 commit comments

Comments
 (0)