-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.js
236 lines (193 loc) · 5.33 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#!/usr/bin/env node
const fs = require('fs')
const path = require('path')
const minimist = require('minimist')
const prompts = require('prompts')
const { red, reset } = require('kolorist')
const {
copy,
emptyDir,
readJsonFile,
writeJsonFile,
readFile,
writeFile
} = require('./utils/fsExtra')
const DEFAULT_PRO_NAME = 'my-monorepo'
async function init() {
const argv = minimist(process.argv.slice(2), { string: [0] })
const cwd = process.cwd()
let targetDir = argv._[0]
let test = argv.test
let runTS = argv.runTS || false
let skip = argv.skip || false
const defaultProjectName = !targetDir ? DEFAULT_PRO_NAME : targetDir
let result = {}
try {
result = await prompts([
{
name: 'projectName',
type: targetDir ? null : 'text',
message: reset('Project name:'),
initial: defaultProjectName,
onState: (state) => (targetDir = state.value.trim() || defaultProjectName)
},
{
name: 'shouldOverwrite',
type: () => (canSafelyOverwrite(targetDir) || skip ? null : 'confirm'),
message: () =>
(targetDir === '.' ? 'Current directory' : `Target directory "${targetDir}"`) +
` is not empty. Remove existing files and continue?`
},
{
name: 'overwriteChecker',
type: (_, { shouldOverwrite } = {}) => {
if (shouldOverwrite === false) {
throw new Error(red('✖') + ' Operation cancelled')
}
return null
}
},
{
name: 'packageName',
type: () => (isValidPackageName(targetDir) ? null : 'text'),
message: 'Package name:',
initial: () => toValidPackageName(targetDir),
validate: (dir) => isValidPackageName(dir) || 'Invalid package.json name'
},
{
name: 'needsTest',
type: () => (skip || test ? null : 'toggle'),
message: 'Add Test?',
initial: false,
active: 'Yes',
inactive: 'No'
},
{
name: 'needsTSExecution',
type: () => (skip || runTS ? null : 'toggle'),
message: 'Add TypeScript execution(tsx/esno)?',
initial: false,
active: 'Yes',
inactive: 'No'
}
])
} catch (cancelled) {
console.log(cancelled.message)
return
}
let {
shouldOverwrite = skip,
packageName = targetDir,
needsTest = test,
needsTSExecution = runTS
} = result
const root = path.join(cwd, targetDir)
if (fs.existsSync(root) && shouldOverwrite) {
emptyDir(root)
} else if (!fs.existsSync(root)) {
fs.mkdirSync(root)
}
console.log(`\nScaffolding project in ${root}...`)
const templateRoot = path.join(__dirname, 'template')
const render = function render(templateName) {
const templateDir = path.resolve(templateRoot, templateName)
copy(templateDir, root)
}
render('base')
if (needsTest) {
render('test')
}
if (needsTSExecution) {
render('env')
}
fs.renameSync(path.resolve(root, '_gitignore'), path.resolve(root, '.gitignore'))
const readme = `# ${packageName}
A monorepo starter
## Packages
| Package | Description | Version |
| ------------- | :---------------- | :------------ |
| [@${packageName}/foo](packages/foo) | A minimal typescript library | |
`
writeFile(path.resolve(root, 'README.md'), readme)
const packageFile = path.join(root, `package.json`)
const pkg = readJsonFile(packageFile)
pkg.name = packageName
if (!needsTest) {
delete pkg.scripts['test:foo']
delete pkg.devDependencies['vitest']
}
if (!needsTSExecution) {
delete pkg.scripts['dev:foo']
delete pkg.devDependencies['dotenv']
delete pkg.devDependencies['esno']
}
writeJsonFile(packageFile, pkg)
const fooReadme = `# @${packageName}/foo
A minimal typescript library.
${
needsTSExecution
? `
## Development
\`\`\`sh
$ pnpm dev:foo
\`\`\`
`
: ''
}
## Build
\`\`\`sh
$ pnpm build:foo
\`\`\`
${
needsTest
? `
## Test
\`\`\`sh
$ pnpm test:foo
\`\`\`
`
: ''
}`
writeFile(path.resolve(root, 'packages', 'foo', 'README.md'), fooReadme)
const fooPackageFile = path.join(root, 'packages', 'foo', `package.json`)
const fooPkg = readJsonFile(fooPackageFile)
fooPkg.name = `@${packageName}/foo`
if (!needsTest) {
delete fooPkg.scripts['test']
}
if (!needsTSExecution) {
delete fooPkg.scripts['dev']
}
writeJsonFile(fooPackageFile, fooPkg)
if (needsTSExecution) {
const tsConfigFile = path.join(root, 'packages', 'foo', `tsconfig.json`)
const tsc = readJsonFile(tsConfigFile)
tsc.include = [...tsc.include, 'env.d.ts']
writeJsonFile(tsConfigFile, tsc)
}
writeFile(path.resolve(root, '.npmrc'), 'shamefully-hoist=true\n')
console.log(`\nDone. Now run:\n`)
if (root !== cwd) {
const dir = path.relative(cwd, root)
console.log(` cd ${dir.includes(' ') ? `"${dir}"` : dir}`)
}
console.log(` pnpm i\n`)
console.log()
}
function canSafelyOverwrite(dir) {
return !fs.existsSync(dir) || fs.readdirSync(dir).length === 0
}
function isValidPackageName(projectName) {
return /^(?:@[a-z0-9-*~][a-z0-9-*._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/.test(projectName)
}
function toValidPackageName(projectName) {
return projectName
.trim()
.toLowerCase()
.replace(/\s+/g, '-')
.replace(/^[._]/, '')
.replace(/[^a-z0-9-~]+/g, '-')
}
init().catch((e) => {
console.error(e)
})