Skip to content

Commit dd12b3f

Browse files
committed
(fix) Fix minor syntax error on webpack and update package.json scripts
1 parent ba45e34 commit dd12b3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Job application tracking app",
55
"scripts": {
66
"test": "grunt test",
7-
"postinstall": "grunt build",
7+
"postinstall": "webpack",
88
"coverage": "grunt coverage"
99
},
1010
"repository": {

webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ module.exports = {
2828
},
2929
{
3030
test: /\.scss$/,
31-
loaders: "css-loader!sass-loader
31+
loaders: "css-loader!sass-loader"
3232
}
3333
]
34-
}
34+
},
3535
devServer: {
3636
contentBase: './build'
3737
}

0 commit comments

Comments
 (0)