-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
56 lines (47 loc) · 1.69 KB
/
index.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
#!/usr/bin/env node
const path = require('path')
const fs = require('fs-extra')
const argv = require('minimist')(process.argv.slice(2))
async function init() {
const targetDir = argv._[0] || '.'
const cwd = process.cwd()
const root = path.join(cwd, targetDir)
const templateDir = path.join(__dirname, 'template');
await fs.ensureDir(root)
const existing = await fs.readdir(root)
if (existing.length) {
console.error('Error: target directory is not empty.')
process.exit(1)
}
const renameFiles = {
'-gitignore': '.gitignore',
'-editorconfig': '.editorconfig',
};
const write = async (file, content) => {
const targetPath = path.join(root, renameFiles[file] || file);
if (content) {
await fs.writeFile(targetPath, content)
} else {
await fs.copy(path.join(templateDir, file), targetPath)
}
}
const files = await fs.readdir(templateDir);
for (const file of files) {
await write(file)
}
const basename = path.basename(root);
const replaceFile = ['vite.config.js', 'vite-proxy.config.js', 'README.md', 'src/router.config.js', 'package.json'];
for (const file of replaceFile) {
let content = await fs.readFile(path.join(templateDir, file), 'utf-8');
content = content.replace(/\[basename]/g, basename)
await write(file, content);
}
console.log(' 项目已经创建成功,接下来:')
if (root !== cwd) {
console.log(` cd ${path.relative(cwd, root)}`)
}
console.log(' npm install (or `yarn`)')
console.log(' npm run dev (or `yarn dev`)');
console.log()
}
init().catch(e => console.error(e));