mirror of
https://github.com/Eugeny/tabby
synced 2024-11-13 00:17:12 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
15 lines
471 B
JavaScript
15 lines
471 B
JavaScript
import log from 'npmlog'
|
|
import { builtinPlugins } from './scripts/vars.mjs'
|
|
|
|
const paths = [
|
|
'./app/webpack.config.mjs',
|
|
'./app/webpack.config.main.mjs',
|
|
// './web/webpack.config.mjs',
|
|
// './tabby-web-demo/webpack.config.mjs',
|
|
...builtinPlugins.map(x => `./${x}/webpack.config.mjs`),
|
|
]
|
|
|
|
paths.forEach(x => log.info(`Using config: ${x}`))
|
|
|
|
const config = await Promise.all(paths.map(x => import(x).then(x => x.default())))
|
|
export default () => config
|