mirror of https://github.com/webpack/webpack.git
9 lines
91 B
JavaScript
9 lines
91 B
JavaScript
|
module.exports = {
|
||
|
findBundle: function() {
|
||
|
return [
|
||
|
"./a.js",
|
||
|
"./b.js"
|
||
|
]
|
||
|
}
|
||
|
};
|