File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "presets" : [" next/babel" ]
2
+ "env" : {
3
+ "development" : {
4
+ "presets" : [" next/babel" ]
5
+ },
6
+ "production" : {
7
+ "presets" : [" next/babel" ]
8
+ },
9
+ "test" : {
10
+ // next/babel does not transpile import/export syntax.
11
+ // So, using es2015 in the beginning will fix that.
12
+ "presets" : [" es2015" , " next/babel" ]
13
+ }
14
+ }
3
15
}
Original file line number Diff line number Diff line change 15
15
"babel-jest" : " ^18.0.0" ,
16
16
"enzyme" : " ^2.5.1" ,
17
17
"jest-cli" : " ^18.0.0" ,
18
- "react" : " ^15.3.2" ,
19
- "react-addons-test-utils" : " ^15.3.2" ,
20
- "react-dom" : " ^15.3.2" ,
21
- "react-test-renderer" : " ^15.4.1"
18
+ "react-addons-test-utils" : " ^15.4.2" ,
19
+ "babel-preset-es2015" : " ^6.22.0" ,
20
+ "react-test-renderer" : " ^15.4.2"
22
21
}
23
22
}
You can’t perform that action at this time.
0 commit comments