Skip to content

Commit 3f5fb5d

Browse files
committed
chore: fix code format
1 parent 3989543 commit 3f5fb5d

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

examples/lib-node/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@examples/lib-node",
33
"private": true,
4+
"files": [
5+
"dist"
6+
],
47
"type": "module",
8+
"types": "./dist/index.d.ts",
59
"exports": {
610
".": {
711
"types": "./dist/index.d.ts",
812
"import": "./dist/index.js"
913
}
1014
},
11-
"types": "./dist/index.d.ts",
12-
"files": [
13-
"dist"
14-
],
1515
"scripts": {
1616
"build": "rs lib",
1717
"dev": "rs lib -w",

packages/rstack/src/rstestConfig.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const extendsConfig = async (testConfig: RstestConfig, params: ConfigParams) =>
1212
if (appConfig) {
1313
const { toRstestConfig } = await import(
1414
/* rspackChunkName: 'adapterRsbuild' */
15-
'@rstest/adapter-rsbuild');
15+
'@rstest/adapter-rsbuild'
16+
);
1617
const rsbuildConfig = typeof appConfig === 'function' ? await appConfig(params) : appConfig;
1718

1819
testConfig.extends = toRstestConfig({

0 commit comments

Comments
 (0)