File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,5 +58,5 @@ export {
58
58
explicitTransform1 ,
59
59
explicitTransform2 ,
60
60
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`, () => {
79
79
describe ( `Tags` , ( ) => {
80
80
test ( `(@no-transform-path) Doesn't transform path` , ( ) => {
81
81
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 ;
83
83
const matches = [
84
84
...( normalEmit [ tagFile ] . dts . match ( regex ) ?? [ ] ) ,
85
85
...( rootDirsEmit [ tagFile ] . dts . match ( regex ) ?? [ ] ) ,
@@ -92,7 +92,7 @@ describe(`Transformer -> Specific Cases`, () => {
92
92
test ( `(@transform-path) Transforms path with explicit value` , ( ) => {
93
93
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;
94
94
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 ;
96
96
97
97
const matches1 = [
98
98
...( normalEmit [ tagFile ] . dts . match ( regex1 ) ?? [ ] ) ,
You can’t perform that action at this time.
0 commit comments