-
-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Expand file tree
/
Copy pathcheck-package.ts
More file actions
140 lines (130 loc) · 3.98 KB
/
check-package.ts
File metadata and controls
140 lines (130 loc) · 3.98 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// This script makes sure that we can support type checking,
// without having to build dts files for all packages in the monorepo.
// It is not implemented yet for angular, svelte and vue.
import { program } from 'commander';
// eslint-disable-next-line depend/ban-dependencies
import { execaCommand } from 'execa';
// eslint-disable-next-line depend/ban-dependencies
import { readJSON } from 'fs-extra';
import { resolve } from 'path';
import picocolors from 'picocolors';
import prompts from 'prompts';
import windowSize from 'window-size';
import { getWorkspaces } from './utils/workspace';
async function run() {
const packages = await getWorkspaces();
const packageTasks = packages
.map((pkg) => {
return {
...pkg,
suffix: pkg.name.replace('@storybook/', ''),
defaultValue: false,
helpText: `check only the ${pkg.name} package`,
};
})
.reduce(
(acc, next) => {
acc[next.name] = next;
return acc;
},
{} as Record<
string,
{ name: string; defaultValue: boolean; suffix: string; helpText: string }
>
);
const tasks: Record<
string,
{
name: string;
defaultValue: boolean;
suffix: string;
helpText: string;
value?: any;
location?: string;
}
> = {
watch: {
name: `watch`,
defaultValue: false,
suffix: '--watch',
helpText: 'check on watch mode',
},
...packageTasks,
};
const main = program
.version('5.0.0')
.option('--all', `check everything ${picocolors.gray('(all)')}`);
Object.keys(tasks)
.reduce((acc, key) => acc.option(tasks[key].suffix, tasks[key].helpText), main)
.parse(process.argv);
Object.keys(tasks).forEach((key) => {
const opts = program.opts();
// checks if a flag is passed e.g. yarn check --@storybook/addon-docs --watch
const containsFlag = program.args.includes(tasks[key].suffix);
tasks[key].value = containsFlag || opts.all;
});
let selection;
let watchMode = false;
if (
!Object.keys(tasks)
.map((key) => tasks[key].value)
.filter(Boolean).length
) {
selection = await prompts([
{
type: 'toggle',
name: 'mode',
message: 'Start in watch mode',
initial: false,
active: 'yes',
inactive: 'no',
},
{
type: 'autocompleteMultiselect',
message: 'Select the packages to check',
name: 'todo',
min: 1,
hint: 'You can also run directly with package name like `yarn check core`, or `yarn check --all` for all packages!',
// @ts-expect-error @types incomplete
optionsPerPage: windowSize.height - 3, // 3 lines for extra info
choices: packages.map(({ name: key }) => ({
value: key,
title: tasks[key].name || key,
selected: (tasks[key] && tasks[key].defaultValue) || false,
})),
},
]).then(({ mode, todo }: { mode: boolean; todo: Array<string> }) => {
watchMode = mode;
return todo?.map((key) => tasks[key]);
});
} else {
// hits here when running yarn check --packagename
watchMode = process.argv.includes('--watch');
selection = Object.keys(tasks)
.map((key) => tasks[key])
.filter((item) => item.name !== 'watch' && item.value === true);
}
selection?.filter(Boolean).forEach(async (v) => {
const command = (await readJSON(resolve('../code', v.location, 'package.json'))).scripts.check;
const cwd = resolve(__dirname, '..', 'code', v.location);
const sub = execaCommand(`${command}${watchMode ? ' --watch' : ''}`, {
cwd,
buffer: false,
shell: true,
cleanup: true,
env: {
NODE_ENV: 'production',
},
});
sub.stdout.on('data', (data) => {
process.stdout.write(`${picocolors.cyan(v.name)}:\n${data}`);
});
sub.stderr.on('data', (data) => {
process.stderr.write(`${picocolors.red(v.name)}:\n${data}`);
});
});
}
run().catch((e) => {
console.log(e);
process.exit(1);
});