Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
fix(build): Do not run all deps through babel
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Nov 19, 2015
1 parent 2367adc commit 7bbb9be
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tasks/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ const shared = {
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015'],
plugins: ['transform-runtime']
}
}, {
test: /\.js$/,
include: /node_modules\/(hoek|qs|wreck|boom)/,
loader: 'babel',
query: {
presets: ['es2015'],
Expand Down

0 comments on commit 7bbb9be

Please sign in to comment.