Skip to content

Commit

Permalink
fix: Enable babel caching for webpack test conf
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-suhas committed Jun 11, 2017
1 parent 600469d commit 837195c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion webpack.config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ module.exports = {
rules: [
{
test: /\.(js|jsx)$/,
use: 'babel-loader'
use: {
loader: 'babel-loader',
options: { cacheDirectory: true }
}
}
]
}
Expand Down

0 comments on commit 837195c

Please sign in to comment.