-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathinitialize.ts
36 lines (29 loc) · 954 Bytes
/
initialize.ts
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
import chalk from 'chalk';
import path from 'path';
import { initDirectory, initTransform } from '@hypermod/initializer';
const communityPath = `${__dirname}/../community`;
export function main(packageName: string, transform?: string) {
if (!packageName)
throw new Error(
chalk.red(
'Package name was not provided. Example: yarn community:init foobar 12.0.0',
),
);
if (!transform)
throw new Error(
chalk.red(
'Version was not provided. Example: Example: yarn community:init foobar 12.0.0',
),
);
const targetPath = path.join(communityPath, packageName.replace('/', '__'));
if (transform) {
initDirectory(packageName, targetPath, true);
initTransform(packageName, transform, 'version', targetPath);
}
console.log(
chalk.green(
`🚚 New codemod package created at: ./community/${packageName}/${transform}`,
),
);
}
main(process.argv[2], process.argv[3]);