-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
vitest-generator.ts
151 lines (136 loc) · 3.66 KB
/
vitest-generator.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
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
import {
addDependenciesToPackageJson,
convertNxGenerator,
formatFiles,
generateFiles,
GeneratorCallback,
joinPathFragments,
offsetFromRoot,
readProjectConfiguration,
Tree,
updateJson,
} from '@nrwl/devkit';
import {
addOrChangeTestTarget,
findExistingTargetsInProject,
createOrEditViteConfig,
} from '../../utils/generator-utils';
import { VitestGeneratorSchema } from './schema';
import { runTasksInSerial } from '@nrwl/workspace/src/utilities/run-tasks-in-serial';
import initGenerator from '../init/init';
import {
vitestCoverageC8Version,
vitestCoverageIstanbulVersion,
} from '../../utils/versions';
export async function vitestGenerator(
tree: Tree,
schema: VitestGeneratorSchema
) {
const tasks: GeneratorCallback[] = [];
const { targets, root, projectType } = readProjectConfiguration(
tree,
schema.project
);
let testTarget =
schema.testTarget ??
findExistingTargetsInProject(targets)?.validFoundTargetName?.test ??
'test';
addOrChangeTestTarget(tree, schema, testTarget);
const initTask = initGenerator(tree, {
uiFramework: schema.uiFramework,
});
tasks.push(initTask);
if (!schema.skipViteConfig) {
createOrEditViteConfig(
tree,
{
...schema,
includeVitest: true,
includeLib: projectType === 'library',
},
true
);
}
createFiles(tree, schema, root);
updateTsConfig(tree, schema, root);
const installCoverageProviderTask = addDependenciesToPackageJson(
tree,
{},
schema.coverageProvider === 'istanbul'
? {
'@vitest/coverage-istanbul': vitestCoverageIstanbulVersion,
}
: {
'@vitest/coverage-c8': vitestCoverageC8Version,
}
);
tasks.push(installCoverageProviderTask);
if (schema.coverageProvider === 'istanbul') {
}
await formatFiles(tree);
return runTasksInSerial(...tasks);
}
function updateTsConfig(
tree: Tree,
options: VitestGeneratorSchema,
projectRoot: string
) {
updateJson(tree, joinPathFragments(projectRoot, 'tsconfig.json'), (json) => {
if (
json.references &&
!json.references.some((r) => r.path === './tsconfig.spec.json')
) {
json.references.push({
path: './tsconfig.spec.json',
});
}
if (!json.compilerOptions?.types?.includes('vitest')) {
if (json.compilerOptions?.types) {
json.compilerOptions.types.push('vitest');
} else {
if (!json.compilerOptions) {
json.compilerOptions = {};
}
json.compilerOptions.types = ['vitest'];
}
}
return json;
});
if (options.inSourceTests) {
const tsconfigLibPath = joinPathFragments(projectRoot, 'tsconfig.lib.json');
const tsconfigAppPath = joinPathFragments(projectRoot, 'tsconfig.app.json');
if (tree.exists(tsconfigLibPath)) {
updateJson(
tree,
joinPathFragments(projectRoot, 'tsconfig.lib.json'),
(json) => {
(json.compilerOptions.types ??= []).push('vitest/importMeta');
return json;
}
);
} else if (tree.exists(tsconfigAppPath)) {
updateJson(
tree,
joinPathFragments(projectRoot, 'tsconfig.app.json'),
(json) => {
(json.compilerOptions.types ??= []).push('vitest/importMeta');
return json;
}
);
}
}
}
function createFiles(
tree: Tree,
options: VitestGeneratorSchema,
projectRoot: string
) {
generateFiles(tree, joinPathFragments(__dirname, 'files'), projectRoot, {
tmpl: '',
...options,
projectRoot,
offsetFromRoot: offsetFromRoot(projectRoot),
});
}
export default vitestGenerator;
export const vitestSchematic = convertNxGenerator(vitestGenerator);