File tree Expand file tree Collapse file tree 4 files changed +1242
-25
lines changed
packages/react-library-scripts Expand file tree Collapse file tree 4 files changed +1242
-25
lines changed Original file line number Diff line number Diff line change 22 "packages" : [" packages/*" ],
33 "useWorkspaces" : true ,
44 "npmClient" : " yarn" ,
5- "version" : " 0.0.6 "
5+ "version" : " 0.0.7 "
66}
Original file line number Diff line number Diff line change 11{
22 "name" : " react-dependency-scripts" ,
3- "version" : " 0.0.6 " ,
3+ "version" : " 0.0.7 " ,
44 "description" : " Scripts of react libraries" ,
55 "main" : " index.js" ,
66 "author" : " André Lins" ,
1919 "@babel/plugin-transform-runtime" : " ^7.6.2" ,
2020 "@babel/preset-env" : " ^7.6.3" ,
2121 "@babel/preset-react" : " ^7.6.3" ,
22+ "babel-jest" : " ^24.9.0" ,
2223 "babel-plugin-module-resolver" : " ^3.2.0" ,
2324 "babel-preset-react-app" : " ^9.0.2" ,
2425 "html-webpack-plugin" : " ^3.2.0" ,
26+ "jest" : " ^24.9.0" ,
2527 "open" : " ^7.0.0" ,
2628 "webpack" : " ^4.41.2" ,
2729 "webpack-dev-server" : " ^3.9.0"
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ if (packageJson.jest) {
1818 jestConfig = { ...jestConfig , ...packageJson . jest } ;
1919}
2020
21+ const args = process . argv . slice ( 2 ) ;
2122args . unshift ( "--ci" ) ;
2223args . unshift ( "--config" , JSON . stringify ( jestConfig ) ) ;
2324
24- jest . run ( process . argv . slice ( 2 ) ) ;
25+ jest . run ( args ) ;
You can’t perform that action at this time.
0 commit comments