File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change
1
+ repo_token : UGhpjA0Mv9s3OLWbyUuozRBp1u7IwF6OF
Original file line number Diff line number Diff line change 4
4
5
5
![ NpmVersion] ( https://img.shields.io/npm/v/npm.svg )
6
6
[ ![ Build Status] ( https://travis-ci.org/kingisaac95/react-webpack-starter.svg?branch=feature%2Fdevelop )] ( https://travis-ci.org/kingisaac95/react-webpack-starter )
7
+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/kingisaac95/react-webpack-starter/badge.svg?branch=feature%2Fdevelop )] ( https://coveralls.io/github/kingisaac95/react-webpack-starter?branch=master )
7
8
![ GitHub] ( https://img.shields.io/github/license/mashape/apistatus.svg )
8
9
9
10
<img width =" 1440 " alt =" screen shot 2018-08-21 at 9 02 00 pm " src =" https://user-images.githubusercontent.com/26261917/44426324-42d11700-a586-11e8-8e05-8d09bafb9f84.png " >
Original file line number Diff line number Diff line change 49
49
" !<rootDir>/node_modules/" ,
50
50
" !<rootDir>/path/to/dir/"
51
51
],
52
+ "coverageThreshold" : {
53
+ "global" : {
54
+ "branches" : 40 ,
55
+ "functions" : 30 ,
56
+ "lines" : 50 ,
57
+ "statements" : 50
58
+ }
59
+ },
52
60
"coverageReporters" : [
53
61
" cobertura" ,
54
62
" html" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const htmlPlugin = new HtmlWebPackPlugin({
6
6
} ) ;
7
7
8
8
module . exports = {
9
- entry : "./src/app .js" ,
9
+ entry : "./src/index .js" ,
10
10
module : {
11
11
rules : [
12
12
{
@@ -18,9 +18,6 @@ module.exports = {
18
18
} ,
19
19
{
20
20
test : / \. s c s s $ / ,
21
- include : [
22
- path . resolve ( __dirname , "styles" )
23
- ] ,
24
21
use : [ "style-loader" , "css-loader" , "sass-loader" ]
25
22
} ,
26
23
{
@@ -38,7 +35,7 @@ module.exports = {
38
35
]
39
36
} ,
40
37
resolve : {
41
- extensions : [ "scss" ]
38
+ extensions : [ ". scss" , ".js "]
42
39
} ,
43
40
plugins : [ htmlPlugin ]
44
41
} ;
You can’t perform that action at this time.
0 commit comments