Skip to content

Commit

Permalink
fix(webpack): allow tape to run
Browse files Browse the repository at this point in the history
by setting a fake fs.writeSync
  • Loading branch information
dignifiedquire committed Apr 22, 2016
1 parent 06a5dc2 commit 8267357
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ const shared = {
node: {
Buffer: true
},
timeout: 80000
timeout: 80000,
plugins: [
new webpack.DefinePlugin({'fs.writeSync': false})
]
}

const dev = _.defaultsDeep({}, shared, {
Expand Down

0 comments on commit 8267357

Please sign in to comment.