-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
133 lines (111 loc) · 3.36 KB
/
cli.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
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
#!/usr/bin/env node
import meow from 'meow';
import { match } from './utils.js';
import { existsSync, mkdirSync, readdirSync, writeFileSync, statSync, copyFileSync } from 'fs';
import { fileURLToPath } from 'url';
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const prompts = require('prompts');
const packageJson = require('./package.json');
const path = require('path');
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// const renameFiles = {
// _gitignore: '.gitignore',
// 'web/_gitignore': 'web/.gitignore'
// };
function copy(src, dest) {
const stat = statSync(src);
if (stat.isDirectory()) {
copyDir(src, dest);
} else {
copyFileSync(src, dest);
}
}
function copyDir(srcDir, destDir) {
mkdirSync(destDir, { recursive: true });
for (const file of readdirSync(srcDir)) {
const srcFile = path.resolve(srcDir, file);
const destFile = path.resolve(destDir, file);
copy(srcFile, destFile);
}
}
const cli = meow(
`
Usage
$ create-blank-app <name> <search keywords>
Options
--postfix Lorem ipsum [Default: rainbows]
Examples
$ create-blank-app myapp vite react ts
`,
{
flags: {
postfix: {
type: 'string',
default: 'rainbows'
}
}
}
);
console.log(`Version: ${packageJson.version}`);
async function init() {
const [appName, ...searchKeys] = cli.input;
console.log('Keywords', searchKeys);
const matches = match(appName, searchKeys);
matches.map((item) => {
console.log(item.command);
});
// if (!name) {
// console.log('ERROR: missing project name.');
// process.exit(1);
// }
// if (existsSync(name)) {
// console.log('ERROR: directory already exists.');
// process.exit(1);
// }
// console.log(`Creating web3 app "${name}"`);
// // console.log(name || 'unicorns', cli.flags);
// mkdirSync(name);
// const template = 'vite-web3-react-ts';
// const templateDir = path.join(__dirname, `template-${template}`);
// const write = (root, file, content) => {
// const targetPath = renameFiles[file] ? path.join(root, renameFiles[file]) : path.join(root, file);
// if (content) {
// writeFileSync(targetPath, content);
// } else {
// copy(path.join(templateDir, file), targetPath);
// }
// };
// const files = readdirSync(templateDir);
// for (const file of files.filter((f) => f !== 'package.json')) {
// write(name, file);
// }
// const pkg = require(path.join(templateDir, `web/package.json`));
// pkg.name = name;
// write(name, 'web/package.json', JSON.stringify(pkg, null, 2));
// console.log(`\nDone. Now run:\n$ cd ${name}/web\n$ yarn`);
}
(async () => {
const [appName, ...searchKeys] = cli.input;
console.log('Keywords', searchKeys);
const matches = match(appName, searchKeys);
const choices = matches.map((item) => {
// console.log(item.command);
return { title: item.colorCommand, value: item.command };
});
const response = await prompts([
{
type: 'select',
name: 'command',
message: 'Matched commands:',
choices
}
]);
console.log('Command:', response.command);
return require('child_process').execSync(response.command, { stdio: 'inherit' });
// => { twitter: 'terkelg', color: [ '#ff0000', '#0000ff' ] }
// init().catch((e) => {
// console.error(e);
// });
})();