-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
executable file
·64 lines (48 loc) · 2.08 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import * as fs from 'node:fs/promises';
import * as url from 'node:url';
import State from '@j-cake/jcake-utils/state';
import {iterSync} from '@j-cake/jcake-utils/iter';
import * as Format from '@j-cake/jcake-utils/args';
import chalk from 'chalk';
import log from './log.js';
import Path from './path.js';
export const config = new State({
logLevel: 'info',
force: false,
root: new Path(process.cwd()),
out: new Path(process.cwd()).concat('build'),
components: null,
selected: []
});
export default async function main(argv) {
const logLevel = Format.oneOf(Object.keys(log), false);
for (const {current: i, skip: next} of iterSync.peekable(argv))
if (i === '--log-level')
config.setState({logLevel: logLevel(next())});
else if (i === '-f' || i === '--force')
config.setState({force: true});
else if (i === '-o' || i === '--out')
config.setState({out: new Path(next())});
else if (i === '-b' || i === '--build')
config.setState({components: await import(url.pathToFileURL(await fs.realpath(next()))).then(components => components.default)});
else
config.setState(prev => ({selected: [...prev.selected, i]}));
if (!config.get().components)
await config.setStateAsync(async prev => ({
components: await fs.readFile(prev.root.join("package.json").path, 'utf8')
.then(pkg => prev.root.join(JSON.parse(pkg).build).path)
.then(pkg => import(url.pathToFileURL(pkg)))
.then(components => components.default)
.catch(err => log.err(err))
}));
log.debug("Config:", config.get());
await fs.mkdir(config.get().out.path, {recursive: true});
const components = config.get().components;
if (!components)
log.err(`No build script found.`);
else
for (const component of config.get().selected)
if (component in components)
await components[component](config.get())
.then(_ => log.info(`${chalk.grey(component)}: Done`));
}