Skip to content

Commit

Permalink
Merge pull request #202 from concord-consortium/fix-sass-builds
Browse files Browse the repository at this point in the history
build: Fixed missing sass loader setup
  • Loading branch information
dougmartin authored Oct 17, 2023
2 parents f4e5a25 + 4ffc2ff commit a9d071f
Show file tree
Hide file tree
Showing 3 changed files with 169 additions and 1 deletion.
165 changes: 165 additions & 0 deletions researcher-reports/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions researcher-reports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@
"mini-css-extract-plugin": "^1.4.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^4.2.0",
"sass": "^1.51.0",
"sass-loader": "^10.2.0",
"script-loader": "^0.7.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.5",
Expand Down
3 changes: 2 additions & 1 deletion researcher-reports/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ module.exports = (env, argv) => {
}
}
},
'postcss-loader'
'postcss-loader',
'sass-loader'
]
},
{
Expand Down

0 comments on commit a9d071f

Please sign in to comment.