File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
.github/publish-ci/are-the-types-wrong Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,9 @@ interface Checks {
7575 problems ?: Problem [ ]
7676}
7777
78- const rtkPackagePath = path . join ( __dirname , './package.tgz' )
78+ const rsPackagePath = path . join ( __dirname , './package.tgz' )
7979
80- const rtkPackageTgzBytes = fs . readFileSync ( rtkPackagePath )
80+ const rsPackageTgzBytes = fs . readFileSync ( rsPackagePath )
8181
8282function Header ( { text, width } : { text : string ; width : number | string } ) {
8383 return (
@@ -114,13 +114,15 @@ function Traces({
114114 < Box
115115 width = "100%"
116116 key = { `resolutionDetails-${ resolutionKind } -${ subpath } ` }
117- flexDirection = "column" >
117+ flexDirection = "column"
118+ >
118119 < Text bold > { resolutionKind } Traces:</ Text >
119120 < Box flexDirection = "column" >
120121 { details . trace . map ( ( traceLine , i ) => {
121122 return (
122123 < Text
123- key = { `resolutionDetails-traces-${ subpath } -${ resolutionKind } -${ i } ` } >
124+ key = { `resolutionDetails-traces-${ subpath } -${ resolutionKind } -${ i } ` }
125+ >
124126 { traceLine }
125127 </ Text >
126128 )
@@ -243,7 +245,7 @@ interface CLIOptions {
243245}
244246
245247; ( async function main ( { nonErrorProblems = [ ] } : CLIOptions ) {
246- const analysis = await checkTgz ( rtkPackageTgzBytes )
248+ const analysis = await checkTgz ( rsPackageTgzBytes )
247249
248250 const checks : Checks = {
249251 analysis,
Original file line number Diff line number Diff line change 11{
22 "arrowParens": "avoid",
3- "jsxBracketSameLine": true,
43 "printWidth": 80,
54 "semi": false,
65 "singleQuote": true,
You can’t perform that action at this time.
0 commit comments