File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,5 +58,5 @@ export {
5858 explicitTransform1 ,
5959 explicitTransform2 ,
6060 explicitTransform3 ,
61- explicitTransform4
62- }
61+ explicitTransform4 ,
62+ } ;
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ describe(`Transformer -> Specific Cases`, () => {
7979 describe ( `Tags` , ( ) => {
8080 test ( `(@no-transform-path) Doesn't transform path` , ( ) => {
8181 const regex = / ^ i m p o r t \* a s s k i p T r a n s f o r m \d f r o m " # r o o t \/ i n d e x " / gm;
82- const expectedLength = tsInstance . versionMajorMinor === ' 3.6' ? 8 : 16 ;
82+ const expectedLength = tsInstance . versionMajorMinor === " 3.6" ? 8 : 16 ;
8383 const matches = [
8484 ...( normalEmit [ tagFile ] . dts . match ( regex ) ?? [ ] ) ,
8585 ...( rootDirsEmit [ tagFile ] . dts . match ( regex ) ?? [ ] ) ,
@@ -92,7 +92,7 @@ describe(`Transformer -> Specific Cases`, () => {
9292 test ( `(@transform-path) Transforms path with explicit value` , ( ) => {
9393 const regex1 = / ^ i m p o r t \* a s e x p l i c i t T r a n s f o r m \d f r o m " \. \/ d i r \/ s r c - f i l e " / gm;
9494 const regex2 = / ^ i m p o r t \* a s e x p l i c i t T r a n s f o r m \d f r o m " h t t p : \/ \/ w w w \. g o \. c o m \/ r e a c t \. j s " / gm;
95- const expectedLength = tsInstance . versionMajorMinor === ' 3.6' ? 4 : 8 ;
95+ const expectedLength = tsInstance . versionMajorMinor === " 3.6" ? 4 : 8 ;
9696
9797 const matches1 = [
9898 ...( normalEmit [ tagFile ] . dts . match ( regex1 ) ?? [ ] ) ,
You can’t perform that action at this time.
0 commit comments