Skip to content

Commit

Permalink
chore: fix diff case (#6122)
Browse files Browse the repository at this point in the history
  • Loading branch information
LingyuCoder authored Apr 5, 2024
1 parent f605cd4 commit 73d1234
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion diffcases/arco-pro/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const config = {
use: "less-loader",
type: "css",
generator: {
exportsOnly: true
exportsOnly: true,
exportsConvention: "as-is"
}
},
{
Expand All @@ -24,6 +25,7 @@ const config = {
type: "css/module",
generator: {
exportsOnly: true,
exportsConvention: "as-is",
localIdentName: "[uniqueName]---[path][name][ext]-[local]"
}
},
Expand Down

2 comments on commit 73d1234

@rspack-bot
Copy link

Choose a reason for hiding this comment

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

📝 Ran ecosystem CI: Open

suite result
modernjs, self-hosted, Linux, ci ❌ failure
_selftest, ubuntu-latest ✅ success
nx, ubuntu-latest ✅ success
rspress, ubuntu-latest ✅ success
rsbuild, ubuntu-latest ❌ failure
compat, ubuntu-latest ✅ success
examples, ubuntu-latest ❌ failure

@rspack-bot
Copy link

Choose a reason for hiding this comment

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

📝 Benchmark detail: Open

Name Base (2024-04-05 6952f10) Current Change
10000_development-mode + exec 2.67 s ± 42 ms 2.65 s ± 20 ms -0.55 %
10000_development-mode_hmr + exec 672 ms ± 8.4 ms 671 ms ± 7 ms -0.18 %
10000_production-mode + exec 2.72 s ± 39 ms 2.7 s ± 31 ms -0.53 %
arco-pro_development-mode + exec 2.56 s ± 104 ms 2.54 s ± 105 ms -0.61 %
arco-pro_development-mode_hmr + exec 442 ms ± 1.4 ms 441 ms ± 1.4 ms -0.30 %
arco-pro_development-mode_hmr_intercept-plugin + exec 452 ms ± 2.1 ms 451 ms ± 2.6 ms -0.16 %
arco-pro_development-mode_intercept-plugin + exec 3.3 s ± 78 ms 3.26 s ± 106 ms -1.48 %
arco-pro_production-mode + exec 4.37 s ± 81 ms 4.41 s ± 56 ms +0.82 %
arco-pro_production-mode_intercept-plugin + exec 5.16 s ± 93 ms 5.15 s ± 53 ms -0.24 %
threejs_development-mode_10x + exec 2 s ± 19 ms 1.99 s ± 20 ms -0.21 %
threejs_development-mode_10x_hmr + exec 735 ms ± 3.4 ms 734 ms ± 2.4 ms -0.14 %
threejs_production-mode_10x + exec 5.26 s ± 39 ms 5.27 s ± 39 ms +0.21 %

Please sign in to comment.