File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5757 // Generated from apps/playgrounds/*/package.json arkenvExamples metadata.
5858 "description" : " Disable sync-generated example apps" ,
5959 "matchFileNames" : [
60- // BEGIN GENERATED SYNC EXAMPLES
60+ // BEGIN GENERATED SYNC EXAMPLES
6161 " examples/basic/**" ,
6262 " examples/basic-js/**" ,
6363 " examples/with-bun/**" ,
6868 " examples/with-solid-start/**" ,
6969 " examples/with-standard-schema/**" ,
7070 " examples/with-vite-react/**"
71- // END GENERATED SYNC EXAMPLES
71+ // END GENERATED SYNC EXAMPLES
7272 ],
7373 "enabled" : false
7474 },
Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ function main() {
8787
8888 if ( syncRenovateConfig ( generatedExampleNames , checkOnly ) ) {
8989 hasChanges = true ;
90- console . log ( "\n ✗ Renovate config is out of sync with playground metadata." ) ;
90+ console . log (
91+ "\n ✗ Renovate config is out of sync with playground metadata." ,
92+ ) ;
9193 }
9294
9395 if ( checkOnly ) {
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ const END_MARKER = "// END GENERATED SYNC EXAMPLES";
88
99function generatedMatchFileNames ( exampleNames ) {
1010 return [
11- `\t\t\t${ START_MARKER } ` ,
11+ `\t\t\t\t ${ START_MARKER } ` ,
1212 ...exampleNames . flatMap ( ( name , index ) => [
1313 `\t\t\t\t"examples/${ name } /**"${ index === exampleNames . length - 1 ? "" : "," } ` ,
1414 ] ) ,
15- `\t\t\t${ END_MARKER } ` ,
15+ `\t\t\t\t ${ END_MARKER } ` ,
1616 ] . join ( "\n" ) ;
1717}
1818
You can’t perform that action at this time.
0 commit comments