Skip to content

Commit

Permalink
change plugin order
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1995 committed Aug 23, 2024
1 parent 9451450 commit 0dd98f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/torus-scripts/config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ const getDefaultConfig = (name) => {
modulesOnly: true,
preferBuiltins: false,
}),
babelPlugin(babelPluginOptions),
...(baseConfig.plugins || []),
babelPlugin(babelPluginOptions),
],
};
const esmOriginalExport = {
Expand All @@ -63,8 +63,8 @@ const getDefaultConfig = (name) => {
modulesOnly: true,
preferBuiltins: false,
}),
babelPlugin(babelPluginOptions),
...(baseConfig.plugins || []),
babelPlugin(babelPluginOptions),
],
};
// const cjsCombinedExport = {
Expand Down Expand Up @@ -92,8 +92,8 @@ const getDefaultConfig = (name) => {
modulesOnly: true,
preferBuiltins: false,
}),
babelPlugin(babelPluginOptions),
...(baseConfig.plugins || []),
babelPlugin(babelPluginOptions),
],
};
const finalTasks = [];
Expand Down

0 comments on commit 0dd98f7

Please sign in to comment.