forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate-build.ts
264 lines (242 loc) · 8.09 KB
/
validate-build.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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import { existsSync, readdirSync, readFileSync, statSync } from 'node:fs';
import { createRequire } from 'node:module';
import { type BuildConfig, type PackageJSON, panic } from './util';
import { access, readFile } from './util';
import { basename, extname, join } from 'node:path';
import { pathToFileURL } from 'node:url';
import { rollup } from 'rollup';
import ts from 'typescript';
/**
* This will validate a completed production build by triple checking all the files have been
* created and can execute correctly in their context. This is the last task before publishing the
* build files to npm.
*/
export async function validateBuild(config: BuildConfig) {
console.log('🕵️ validating build...');
const pkgPath = join(config.distQwikPkgDir, 'package.json');
const pkg: PackageJSON = JSON.parse(await readFile(pkgPath, 'utf-8'));
const errors: string[] = [];
const require = createRequire(import.meta.url);
// triple checks these package files all exist and parse
const pkgFiles = [...pkg.files!, 'LICENSE', 'README.md', 'package.json'];
const expectedFiles = pkgFiles.map((f) => join(config.distQwikPkgDir, f));
const dependencies = ['csstype', 'vite'];
const pkgDependencies = Object.keys(pkg.dependencies!);
if (pkgDependencies.length !== dependencies.length) {
errors.push(
`Expected ${dependencies.length} dependencies, but found ${pkgDependencies.length}.`
);
} else {
for (const dep of dependencies) {
if (!pkgDependencies.includes(dep)) {
errors.push(`Expected ${dep} to be a dependency.`);
}
}
}
for (const filePath of expectedFiles) {
try {
// loop through each file and ensure it's built correct
const ext = extname(filePath);
switch (ext) {
case '.cjs':
const f = basename(filePath);
if (f !== 'qwik.cjs') {
require(filePath);
console.log(`✅ ${filePath}`);
}
break;
case '.mjs':
if (config.esmNode) {
await import(pathToFileURL(filePath).href);
console.log(`✅ ${filePath}`);
break;
}
case '.ts':
validateTypeScriptFile(config, filePath);
console.log(`✅ ${filePath}`);
break;
case '.json':
JSON.parse(readFileSync(filePath, 'utf-8'));
console.log(`✅ ${filePath}`);
break;
case '.map':
JSON.parse(readFileSync(filePath, 'utf-8'));
console.log(`✅ ${filePath}`);
break;
default:
if (existsSync(filePath)) {
const s = statSync(filePath);
if (s.isFile()) {
const content = readFileSync(filePath, 'utf-8');
if (content.trim() === '') {
errors.push(`Expected package.json file is empty: ${filePath}`);
} else {
console.log(`✅ ${filePath}`);
}
} else {
console.log(`✅ ${filePath}`);
}
} else {
if (process.env.CI || (!process.env.CI && ext !== '.node')) {
errors.push(`Expected package.json file not found: ${filePath}`);
} else {
console.log(`✅ ${filePath}`);
}
}
}
} catch (e: any) {
errors.push(`${filePath}: ${String(e.stack || e)}`);
}
}
await validatePackageJson(config, pkg, errors);
await Promise.all([
validateModuleTreeshake(config, join(config.distQwikPkgDir, 'core.min.mjs')),
validateModuleTreeshake(config, join(config.distQwikPkgDir, 'core.prod.mjs')),
validateModuleTreeshake(config, join(config.distQwikPkgDir, 'core.mjs')),
validateModuleTreeshake(config, join(config.distQwikPkgDir, 'server.mjs')),
]);
if (config.qwikcity) {
await validateModuleTreeshake(
config,
join(config.packagesDir, 'qwik-city', 'lib', 'index.qwik.mjs'),
['@qwik-city-plan', '@qwik-city-sw-register', 'zod', '@builder.io/qwik/jsx-runtime']
);
}
const allFiles: string[] = [];
function getFiles(dir: string) {
readdirSync(dir)
.map((f) => join(dir, f))
.forEach((filePath) => {
const s = statSync(filePath);
if (s.isDirectory()) {
const dirName = basename(filePath);
if (dirName !== 'starters' && dirName !== 'templates') {
getFiles(filePath);
}
} else if (s.isFile()) {
allFiles.push(filePath);
} else {
errors.push(`Unexpected: ${filePath}`);
}
});
}
getFiles(config.distQwikPkgDir);
const unexpectedFiles = allFiles.filter((f) => !expectedFiles.includes(f));
if (unexpectedFiles.length > 0) {
errors.push(
`Unexpected files found in the package build:\n${unexpectedFiles.join(
'\n'
)}\n\nIf this file is expected, add the file(s) to the package.json "files" array`
);
}
if (errors.length > 0) {
errors.unshift(`Build did not pass validation.`);
panic(errors.join('\n\n❌ '));
} else {
console.log('🏅 validated build');
}
}
/**
* Do a full typescript build for each separate .d.ts file found in the package just to ensure it's
* well formed and relative import paths are correct.
*/
export function validateTypeScriptFile(config: BuildConfig, tsFilePath: string) {
const tsconfigPath = join(config.rootDir, 'tsconfig.json');
const tsconfigResults = ts.readConfigFile(tsconfigPath, ts.sys.readFile);
const tsconfig = ts.parseJsonConfigFileContent(
tsconfigResults.config,
ts.sys,
config.rootDir,
undefined,
tsconfigPath
);
const program = ts.createProgram([tsFilePath], tsconfig.options);
const tsDiagnostics = [
...program.getSemanticDiagnostics(),
...program.getSyntacticDiagnostics(),
...program.getDeclarationDiagnostics(),
...program.getGlobalDiagnostics(),
...program.getConfigFileParsingDiagnostics(),
...program.getOptionsDiagnostics(),
];
if (tsDiagnostics.length > 0) {
const host = {
getCurrentDirectory: () => ts.sys.getCurrentDirectory(),
getNewLine: () => ts.sys.newLine,
getCanonicalFileName: (f: string) => f,
};
throw new Error(ts.formatDiagnostics(tsDiagnostics, host));
}
}
async function validatePackageJson(config: BuildConfig, pkg: PackageJSON, errors: string[]) {
async function validatePath(path: string) {
try {
await access(join(config.distQwikPkgDir, path));
} catch (e: any) {
errors.push(
`Error loading file "${path}" referenced in package.json: ${String(
e ? e.stack || e : 'Error'
)}`
);
}
}
await Promise.all([validatePath(pkg.main), validatePath(pkg.types)]);
async function validateExports(exports: Record<string, any>) {
const exportKeys = Object.keys(exports);
await Promise.all(
exportKeys.map(async (exportKey) => {
const val = exports[exportKey];
if (typeof val === 'string') {
await validatePath(val);
} else {
await validateExports(val);
}
})
);
}
validateExports(pkg.exports!);
}
async function validateModuleTreeshake(
config: BuildConfig,
entryModulePath: string,
external: string[] = []
): Promise<void> {
const virtualInputId = `@index`;
const bundle = await rollup({
input: virtualInputId,
treeshake: {
moduleSideEffects: 'no-external',
},
external: ['@builder.io/qwik/build', '@builder.io/qwik', ...external],
plugins: [
{
name: 'resolver',
resolveId(id) {
if (id === virtualInputId) {
return id;
}
},
load(id) {
if (id === virtualInputId) {
return `import "${entryModulePath}";`;
}
},
},
],
onwarn(warning) {
if (warning.code !== 'EMPTY_BUNDLE') {
throw warning;
}
},
});
const o = await bundle.generate({
format: 'es',
});
const output = o.output[0];
const outputCode = output.code.trim();
if (outputCode !== '') {
console.log(outputCode);
throw new Error(`🧨 Unable to treeshake for ${entryModulePath}`);
}
console.log(`🌳 validated treeshake for ${entryModulePath}`);
}