File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2323 ],
2424 "scripts" : {
2525 "check" : " biome check --error-on-warnings" ,
26+ "check:w" : " biome check --error-on-warnings --write" ,
2627 "test" : " vitest run --config ./test/vitest.config.mts" ,
2728 "test:coverage" : " vitest run --config ./test/vitest.config.mts --coverage" ,
2829 "bench" : " vitest bench --run --config ./test/vitest.config.mts" ,
Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ export function prepareDefinition(definition: DefinitionWithExtend): Definition
449449
450450 const type = utils . calibrateAndPrecisionRoundOptionsIsPercentual ( expose . name ) ? "percentual" : "absolute" ;
451451
452- finalDefinition . options . push ( exposesLib . options . calibration ( expose . name , type ) ) ;
452+ finalDefinition . options . push ( exposesLib . options . calibration ( expose . name , type ) . withValueStep ( 0.1 ) ) ;
453453
454454 if ( utils . calibrateAndPrecisionRoundOptionsDefaultPrecision [ expose . name ] !== 0 ) {
455455 finalDefinition . options . push ( exposesLib . options . precision ( expose . name ) ) ;
You can’t perform that action at this time.
0 commit comments