File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 46
46
" xo"
47
47
],
48
48
"dependencies" : {
49
- "@babel/helper-validator-identifier" : " ^7.15.7 " ,
49
+ "@babel/helper-validator-identifier" : " ^7.18.6 " ,
50
50
"ci-info" : " ^3.3.0" ,
51
51
"clean-regexp" : " ^1.0.0" ,
52
52
"eslint-utils" : " ^3.0.0" ,
62
62
"strip-indent" : " ^3.0.0"
63
63
},
64
64
"devDependencies" : {
65
- "@babel/code-frame" : " ^7.16.0 " ,
66
- "@babel/core" : " ^7.16.5 " ,
67
- "@babel/eslint-parser" : " ^7.16.5 " ,
65
+ "@babel/code-frame" : " ^7.18.6 " ,
66
+ "@babel/core" : " ^7.18.6 " ,
67
+ "@babel/eslint-parser" : " ^7.18.2 " ,
68
68
"@lubien/fixture-beta-package" : " ^1.0.0-beta.1" ,
69
69
"@typescript-eslint/parser" : " ^5.7.0" ,
70
70
"ava" : " ^3.15.0" ,
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ test.babel({
601
601
} ,
602
602
{
603
603
code : outdent `
604
- import {foo} from './foo.json' assert { type: 'json ' };
604
+ import {foo} from './foo.json' assert { type: 'unknown ' };
605
605
export {foo};
606
606
export {bar} from './foo.json';
607
607
` ,
@@ -615,12 +615,12 @@ test.babel({
615
615
code : outdent `
616
616
import {foo} from './foo.json';
617
617
export {foo};
618
- export {bar} from './foo.json' assert { type: 'json ' };
618
+ export {bar} from './foo.json' assert { type: 'unknown ' };
619
619
` ,
620
620
errors : 1 ,
621
621
output : outdent `
622
622
\n
623
- export {bar, foo} from './foo.json' assert { type: 'json ' };
623
+ export {bar, foo} from './foo.json' assert { type: 'unknown ' };
624
624
` ,
625
625
} ,
626
626
] ,
You can’t perform that action at this time.
0 commit comments