-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathcreate-test-project.ts
57 lines (45 loc) · 1.44 KB
/
create-test-project.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import prompts from 'prompts';
type ScriptType = 'js' | 'ts';
type AppEngine = 'vite-2' | 'webpack-4';
type PackageManager = 'yarn' | 'npm' | 'pnpm';
type CreateProjectOptions = {
scriptType: ScriptType;
appEngine: AppEngine;
packageManager: PackageManager;
};
export async function createProject({ scriptType, appEngine, packageManager }: CreateProjectOptions) {
// To bypass Corepack enforcing what's specified in the closest package.json file that has the 'packageManager' field
process.env.COREPACK_ENABLE_STRICT = '0';
// See https://github.com/yarnpkg/yarn/issues/9015
process.env.SKIP_YARN_COREPACK_CHECK = '1';
// To alter the behavior to run correctly within this script
process.env.CREATE_TEST_PROJECT_OVERRIDE = 'true';
prompts.override({
projectType: 'app',
projectFolder: 'test-project',
overwrite: true,
scriptType: scriptType,
engine: appEngine,
name: 'test-project',
productName: 'Test Project',
description: 'A test project',
author: 'Quasar Team (info@quasar.dev)',
// The defaults
sfcStyle: 'composition-setup',
css: 'scss',
preset: ['eslint'],
prettier: true,
packageManager,
});
await import('../index.js');
}
const args = process.argv.slice(2) as [ScriptType, AppEngine, PackageManager];
void createProject({
scriptType: args[0],
appEngine: args[1],
packageManager: args[2],
})
.catch(error => {
console.error(error);
process.exit(1);
});