Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingbaoyu committed Sep 26, 2023
1 parent 485ae4e commit 1eecee2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,8 @@ function* libBundlesIterator() {
"babel-helpers",
// multiple exports
"babel-plugin-transform-react-jsx",
// rollup bug https://github.com/babel/babel/pull/16001
"babel-helper-builder-react-jsx",
]);
for (const packageDir of ["packages", "codemods"]) {
for (const dir of fs.readdirSync(new URL(packageDir, import.meta.url))) {
Expand Down Expand Up @@ -686,7 +688,6 @@ if (bool(process.env.BABEL_8_BREAKING)) {
libBundles = Array.from(libBundlesIterator());
} else {
libBundles = [
"packages/babel-helper-builder-react-jsx",
"packages/babel-parser",
"packages/babel-plugin-proposal-destructuring-private",
"packages/babel-plugin-transform-object-rest-spread",
Expand Down

0 comments on commit 1eecee2

Please sign in to comment.