-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(*): add useSwc option #251
Conversation
🦋 Changeset detectedLatest commit: 4a60f85 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -9,9 +9,10 @@ import config from '../../configs/webpack.client.prod'; | |||
import { MultiStats } from 'webpack'; | |||
|
|||
console.log(chalk.magenta('Building client...')); | |||
|
|||
console.time('build client'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это нужно?
@@ -18,6 +19,18 @@ if (configs.tsconfig) { | |||
tsConfigPaths = tsConfig.config.compilerOptions.paths || {}; | |||
} | |||
|
|||
let tsxTransformer = require.resolve('./babel-transform'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не очень люблю let в конфигах, предлагаю вынести условность определения tsxTransformer в метод, и сделать переменную константой
].filter(Boolean), | ||
}, | ||
...(configs.useSwcLoader | ||
? { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
мб вынести это в отдельные переменные для swc и babel разные и будет просто красивый тернарник?
а то громоздко выглядит
}, | ||
...(configs.useSwcLoader | ||
? { | ||
loader: require.resolve('swc-loader'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
и это тоже можно вынести
92cd43f
to
f1439ee
Compare
cdef412
to
4a60f85
Compare
Добавлен флаг
useSwc
для использования swc-loader и swc-jest для транспиляции кода. Использование swc значительно ускоряет сборку (до 2 раз), без особых негативных последствий. Для большинства проектов миграция на swc будет абсолютно незаметна.swc так же поддерживает новый флаг
collectCoverage
, для использования в e2e тулзах.Разница по размерам бандлов на реальных проектах оказывается минимальной, причем иногда при использовании br-сжатия даже в пользу swc.