forked from davidje13/Refacto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mjs
executable file
·103 lines (90 loc) · 2.79 KB
/
build.mjs
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
#!/usr/bin/env node
import { join } from 'node:path';
import {
basedir,
compressFile,
deleteDirectory,
findFiles,
log,
readJSON,
writeNiceJSON,
copy,
} from './helpers/io.mjs';
import { stat, rename, chmod } from 'node:fs/promises';
import { runMultipleTasks, runTask } from './helpers/proc.mjs';
const PARALLEL_BUILD = (process.env['PARALLEL_BUILD'] ?? 'true') === 'true';
const KEEP_DEPS = process.argv.slice(2).includes('--keep-deps');
const packages = [
{ dir: 'frontend', format: '35' },
{ dir: 'backend', format: '36' },
];
const builddir = join(basedir, 'build');
const staticdir = join(builddir, 'static');
await runTask({
command: 'diff',
args: [
join(basedir, 'frontend', 'src', 'shared', 'api-entities.ts'),
join(basedir, 'backend', 'src', 'shared', 'api-entities.ts'),
],
outputMode: 'fail_atomic',
failureMessage: 'Shared api-entities.ts files do not match.',
});
await runMultipleTasks(
packages.map(({ dir, format }) => ({
command: 'npm',
args: ['run', 'build', '--quiet'],
cwd: join(basedir, dir),
beginMessage: `Building ${dir}...`,
failureMessage: `Failed to build ${dir}.`,
outputPrefix: dir,
prefixFormat: format,
})),
{ parallel: PARALLEL_BUILD },
);
let preserveBuildModules = false;
const buildModules = join(builddir, 'node_modules');
const tempBuildModules = join(basedir, 'build_node_modules');
if (KEEP_DEPS) {
const buildModulesStat = await stat(buildModules).catch(() => null);
if (buildModulesStat) {
const buildPackageStat = await stat(
join(basedir, 'backend', 'package.json'),
);
if (buildPackageStat.mtime.getTime() < buildModulesStat.ctime.getTime()) {
preserveBuildModules = true;
} else {
log(
'Deleting build/node_modules because backend/package.json has changed...',
);
}
}
}
if (preserveBuildModules) {
await rename(buildModules, tempBuildModules);
}
await deleteDirectory(builddir);
log('Combining output...');
await copy(join(basedir, 'backend', 'build'), builddir);
await deleteDirectory(staticdir);
await copy(join(basedir, 'frontend', 'build'), staticdir);
await chmod(join(builddir, 'index.js'), 0o755);
if (preserveBuildModules) {
log('Restoring build/node_modules...');
await rename(tempBuildModules, buildModules);
}
log('Compressing static resources...');
await Promise.all((await findFiles(staticdir)).map(compressFile));
log('Generating package.json...');
const packageJson = await readJSON(join(basedir, 'backend', 'package.json'));
await writeNiceJSON(join(builddir, 'package.json'), {
...packageJson,
name: 'refacto-app',
scripts: { start: './index.js' },
optionalDependencies: undefined,
devDependencies: undefined,
});
await copy(
join(basedir, 'backend', 'package-lock.json'),
join(builddir, 'package-lock.json'),
);
log('Build complete.');