forked from smogon/pokemon-showdown-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild
executable file
·67 lines (58 loc) · 1.66 KB
/
build
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
#!/usr/bin/env node
try {
eval('{ let a = {}; let b = {...a}; }');
} catch (e) {
console.log("We require Node.js version 9 or later; you're using " + process.version);
process.exit(1);
}
var execSync = require('child_process').execSync;
var fs = require('fs');
var path = require('path');
try {
require.resolve('@babel/core');
} catch (e) {
console.log('Installing dependencies...');
execSync('npm install', {stdio: 'inherit'});
}
try {
require.resolve('./config/config');
} catch (err) {
if (err.code !== 'MODULE_NOT_FOUND') throw err; // should never happen
console.log('config.js does not exist. Creating one with default settings...');
fs.writeFileSync(
path.resolve(__dirname, 'config/config.js'),
fs.readFileSync(path.resolve(__dirname, 'config/config-example.js'))
);
}
var options = {cwd: __dirname, stdio: 'inherit'};
switch (process.argv[2] || '') {
case 'full':
execSync(`node ./build-tools/build-indexes`, options);
execSync(`node ./build-tools/build-learnsets`, options);
execSync(`node ./build-tools/build-minidex`, options);
break;
case 'indexes':
execSync(`node ./build-tools/build-indexes`, options);
break;
case 'learnsets':
execSync(`node ./build-tools/build-learnsets`, options);
break;
case 'minidex':
case 'sprites':
execSync(`node ./build-tools/build-minidex`, options);
break;
case 'replays':
execSync(`node ../replay.pokemonshowdown.com/build`, options);
process.exit();
break;
case '':
break;
default:
console.log(`Unrecognized command ${process.argv[2]}`);
process.exit();
break;
}
execSync(`node ./build-tools/update`, options);
if (process.argv[2] === 'full') {
execSync(`node ../replay.pokemonshowdown.com/build`, options);
}