Skip to content
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

Merged
merged 4 commits into from
Oct 16, 2024
Merged

feat(*): add useSwc option #251

merged 4 commits into from
Oct 16, 2024

Conversation

heymdall-legal
Copy link
Collaborator

Добавлен флаг useSwc для использования swc-loader и swc-jest для транспиляции кода. Использование swc значительно ускоряет сборку (до 2 раз), без особых негативных последствий. Для большинства проектов миграция на swc будет абсолютно незаметна.

swc так же поддерживает новый флаг collectCoverage, для использования в e2e тулзах.

Разница по размерам бандлов на реальных проектах оказывается минимальной, причем иногда при использовании br-сжатия даже в пользу swc.

Copy link

changeset-bot bot commented Sep 3, 2024

🦋 Changeset detected

Latest commit: 4a60f85

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
arui-scripts Minor
example-modules Patch
example Patch

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');
Copy link

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');
Copy link

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
? {
Copy link

@NeoRu4 NeoRu4 Oct 9, 2024

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'),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

и это тоже можно вынести

@heymdall-legal heymdall-legal merged commit 9581e06 into master Oct 16, 2024
5 checks passed
@core-ds-bot core-ds-bot mentioned this pull request Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants