File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212 const expectedEsm =
1313 major === 13 && minor <= 3
1414 ? "expected-esm-13.2.txt"
15- : major === 16 && minor <= 5
15+ : major < 16 || ( major === 16 && minor <= 5 )
1616 ? "expected-esm-16.0.txt"
1717 : "expected-esm.txt" ;
1818
@@ -28,7 +28,7 @@ const expectedCjs =
2828 ? "expected-cjs-13.0.txt"
2929 : major === 13 && minor <= 3
3030 ? "expected-cjs-13.2.txt"
31- : major === 16 && minor <= 5
31+ : major < 16 || ( major === 16 && minor <= 5 )
3232 ? "expected-cjs-16.0.txt"
3333 : "expected-cjs.txt" ;
3434
@@ -41,7 +41,7 @@ const expectedCjsAbsolute =
4141 ? "expected-cjs-absolute-13.0.txt"
4242 : major === 13 && minor <= 3
4343 ? "expected-cjs-absolute-13.2.txt"
44- : major === 16 && minor <= 5
44+ : major < 16 || ( major === 16 && minor <= 5 )
4545 ? "expected-cjs-absolute-16.0.txt"
4646 : "expected-cjs-absolute.txt" ;
4747
You can’t perform that action at this time.
0 commit comments