mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
22 lines
593 B
JavaScript
Executable file
22 lines
593 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
import * as vars from './vars.mjs'
|
|
import log from 'npmlog'
|
|
import webpack from 'webpack'
|
|
import { promisify } from 'node:util'
|
|
|
|
const configs = [
|
|
'../app/webpack.config.main.mjs',
|
|
'../app/webpack.config.mjs',
|
|
...vars.allPackages.map(x => `../${x}/webpack.config.mjs`),
|
|
]
|
|
|
|
;(async () => {
|
|
for (const c of configs) {
|
|
log.info('build', c)
|
|
const stats = await promisify(webpack)((await import(c)).default())
|
|
console.log(stats.toString({ colors: true }))
|
|
if (stats.hasErrors()) {
|
|
process.exit(1)
|
|
}
|
|
}
|
|
})()
|