feat(runner): add parallel building

This commit is contained in:
Haoyu Xu
2023-01-20 17:21:08 -05:00
parent 580ad1d18d
commit 4decb3d605
9 changed files with 117 additions and 95 deletions

View File

@@ -2,8 +2,5 @@ import path from 'path'
import { read } from './yaml.js'
export default function () {
return {
basedir: __dirname,
...read(path.join(__dirname, 'config.yaml'))
}
return read(path.join(__dirname, 'config.yaml'))
}