Depend on script dependencies for downstream webpack

Downstream webpack will need any dependencies src/ depends on so it can
successfully build. Also if multiple packages being built into a larger
script share a common dependency version range, they can share the
dependency instead of duplicating it. This will save built file size,
execution time, and memory.
This commit is contained in:
Michael "Z" Goddard 2018-04-30 13:06:40 -04:00
parent 6cbe1b9e0f
commit d5d6ab9eb8
No known key found for this signature in database
GPG key ID: 762CD40DD5349872
2 changed files with 11 additions and 4 deletions

View file

@ -20,5 +20,10 @@ module.exports = {
presets: ['es2015']
}
}]
},
externals: {
'audio-context': true,
'minilog': true,
'startaudiocontext': true
}
};