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 9f371c8 commit 67bdbb6Copy full SHA for 67bdbb6
index.js
@@ -89,13 +89,14 @@ function getWorkingLists(options) {
89
90
function browserifyBower(browserify, options) {
91
options = options || {};
92
- options.require = options.require || utils.componentNames(_workdir);
93
-
+
94
if (options.workdir) _workdir = options.workdir;
95
if (options.conf) {
96
var confjson = require(path.join(_workdir, options.conf));
97
options = options.confnode && dotAccess.get(confjson, options.confnode) || confjson;
98
}
+ // if no reqiure configs are specified, let it include all components.
99
+ options.require = options.require || utils.componentNames(_workdir);
100
101
///
102
var workinglists = getWorkingLists(options);
0 commit comments