Fixes calculating number of threads for HappyPack (#10)
This commit is contained in:
parent
3b48c57861
commit
14ead1a62f
|
@ -105,7 +105,7 @@ module.exports = (options = {}) => ({
|
|||
plugins: [
|
||||
new HappyPack({
|
||||
id: "ts",
|
||||
threads: os.cpus().length - 1,
|
||||
threads: Math.max(os.cpus().length - 1, 1),
|
||||
loaders: [{
|
||||
path: "ts-loader",
|
||||
query: {
|
||||
|
|
Loading…
Reference in New Issue