mirror of
https://github.com/Eugeny/tabby.git
synced 2025-08-11 11:51:52 +00:00
.github
.vscode
.well-known
app
build
docs
extras
locale
patches
scripts
snap
tabby-community-color-schemes
tabby-core
tabby-electron
tabby-linkifier
tabby-local
tabby-plugin-manager
tabby-serial
tabby-settings
tabby-ssh
tabby-telnet
tabby-terminal
tabby-uac
tabby-web
tabby-web-demo
web
.all-contributorsrc
.editorconfig
.env
.eslintrc.yml
.gitignore
.mergify.yml
.pug-lintrc.js
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.de-DE.md
README.es-ES.md
README.id-ID.md
README.it-IT.md
README.ja-JP.md
README.ko-KR.md
README.md
README.pl-PL.md
README.pt-BR.md
README.ru-RU.md
README.zh-CN.md
electron-builder.yml
firebase.json
package.json
tsconfig.json
typedoc.mjs
webpack.config.mjs
webpack.plugin.config.mjs
yarn.lock

New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
16 lines
471 B
JavaScript
16 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
|