Migrating from Babel to SWC with React(使用REACT从巴别塔迁移到SWC)
问题描述
TL;DR
如何翻译节点脚本:
"test": "NODE_ENV=test riteway -r @babel/register 'src/**/*.test.js' | tap-nirvana",
使用SWC而不是巴别塔?
上下文
我们最近升级了Next.js版本。Next.js现在支持SWC instead of Babel.
我们项目中Reaction的单元测试是用RITEway编写的。测试命令为:
"test": "NODE_ENV=test riteway -r @babel/register 'src/**/*.test.js' | tap-nirvana",
它首先使用Babel转换文件,否则import
语句和JSX将导致错误。
在我们尝试迁移到SWC的过程中,我们在CLI上运气不佳。然而,我们发现了@swc-node/register
package。它允许我们将我们的命令转换为:
"test": "riteway -r @swc-node/register src/**/*.test.js | tap-nirvana"
它修复了类似import
语句的新语法,并且将运行这样的测试:
import { describe } from 'riteway';
describe('my test', async assert => {
assert({
given: 'true',
should: 'be true',
actual: true,
expected: true,
});
});
但是,像这样的Reaction组件的测试
import { describe } from 'riteway';
import render from 'riteway/render-component';
import Authentication from './user-authentication-component';
describe('user authentication component', async assert => {
const $ = render(<Authentication />);
assert({
given: 'just rendering',
should: "render 'Authentication'",
actual: $('*:contains("Authentication")').text(),
expected: 'Authentication',
});
});
仍引发以下错误:
$ yarn test
yarn run v1.22.17
$ riteway -r @swc-node/register src/**/*.test.js | tap-nirvana
/Users/user/dev/learning-flow/node_modules/@swc/core/index.js:135
return bindings.transformSync(isModule ? JSON.stringify(src) : src, isModule, toBuffer(newOptions));
^
Error: error: Expression expected
|
7 | const $ = render(<Authentication />);
| ^
error: Expression expected
|
7 | const $ = render(<Authentication />);
| ^
error: Unexpected token `)`. Expected this, import, async, function, [ for array literal, { for object literal, @ for decorator, function, class, null, true, false, number, bigint, string, regexp, ` for template literal, (, or an identifier
|
7 | const $ = render(<Authentication />);
| ^
Caused by:
0: failed to process js file
1: Syntax Error
at Compiler.transformSync
如何创建该命令以使其与SWC一起运行?
推荐答案
经过一些试验,我发现如果您在每个文件(包括组件和测试)中import React from 'react';
并将文件扩展名更改为.jsx
(如in the docs所述),它就可以工作。
.js
。
我们尝试了setting .swcrc
,到目前为止没有任何成功。
我在此发布此答案,以防找不到配置.swcrc
的方法。
这篇关于使用REACT从巴别塔迁移到SWC的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用REACT从巴别塔迁移到SWC
基础教程推荐
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01