We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a3238d commit b72623dCopy full SHA for b72623d
index.js
@@ -59,7 +59,8 @@ module.exports = function (source, map) {
59
return loadConfig(pack);
60
}
61
}).then(function (config) {
62
- var plugins = config.plugins;
+ if ( !config ) config = { };
63
+ var plugins = config.plugins || [];
64
65
var opts = assign({}, config.options, {
66
from: file,
0 commit comments