mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
15 lines
399 B
JavaScript
15 lines
399 B
JavaScript
const log = require('npmlog')
|
|
const { builtinPlugins } = require('./scripts/vars')
|
|
|
|
const paths = [
|
|
'./app/webpack.config.js',
|
|
'./app/webpack.main.config.js',
|
|
'./web/webpack.config.js',
|
|
'./tabby-web-demo/webpack.config.js',
|
|
...builtinPlugins.map(x => `./${x}/webpack.config.js`),
|
|
]
|
|
|
|
paths.forEach(x => log.info(`Using config: ${x}`))
|
|
|
|
module.exports = paths.map(x => require(x))
|