forked from nazar-pc/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-scripts.js
215 lines (175 loc) · 4.11 KB
/
npm-scripts.js
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
const process = require('process');
const os = require('os');
const fs = require('fs');
const { execSync } = require('child_process');
const { version } = require('./package.json');
const isFreeBSD = os.platform() === 'freebsd';
const isWindows = os.platform() === 'win32';
const task = process.argv.slice(2).join(' ');
// mediasoup mayor version.
const MAYOR_VERSION = 3;
// Just for Windows.
let PYTHON;
let MSBUILD;
let MEDIASOUP_BUILDTYPE;
let MEDIASOUP_TEST_TAGS;
if (isWindows)
{
PYTHON = process.env.PYTHON || 'python';
MSBUILD = process.env.MSBUILD || 'MSBuild';
MEDIASOUP_BUILDTYPE = process.env.MEDIASOUP_BUILDTYPE || 'Release';
MEDIASOUP_TEST_TAGS = process.env.MEDIASOUP_TEST_TAGS || '';
}
let MAKE;
if (isFreeBSD)
{
MAKE = process.env.MAKE || 'gmake';
}
else
{
MAKE = process.env.MAKE || 'make';
}
// eslint-disable-next-line no-console
console.log(`npm-scripts.js [INFO] running task "${task}"`);
switch (task)
{
case 'typescript:build':
{
if (!isWindows)
{
execute('rm -rf lib');
}
else
{
execute('rmdir /s /q lib');
}
execute('tsc');
taskReplaceVersion();
break;
}
case 'typescript:watch':
{
const TscWatchClient = require('tsc-watch/client');
if (!isWindows)
{
execute('rm -rf lib');
}
else
{
execute('rmdir /s /q lib');
}
const watch = new TscWatchClient();
watch.on('success', taskReplaceVersion);
watch.start('--pretty');
break;
}
case 'lint:node':
{
execute('cross-env MEDIASOUP_NODE_LANGUAGE=typescript eslint -c .eslintrc.js --max-warnings 0 --ext=ts src/');
execute('cross-env MEDIASOUP_NODE_LANGUAGE=javascript eslint -c .eslintrc.js --max-warnings 0 --ext=js --ignore-pattern \'!.eslintrc.js\' .eslintrc.js npm-scripts.js test/ worker/scripts/gulpfile.js');
break;
}
case 'lint:worker':
{
execute(`${MAKE} lint -C worker`);
break;
}
case 'format:worker':
{
execute(`${MAKE} format -C worker`);
break;
}
case 'test:node':
{
taskReplaceVersion();
if (!process.env.TEST_FILE)
{
execute('jest');
}
else
{
execute(`jest --testPathPattern ${process.env.TEST_FILE}`);
}
break;
}
case 'test:worker':
{
if (!isWindows)
{
execute(`${MAKE} test -C worker`);
}
else if (!process.env.MEDIASOUP_WORKER_BIN)
{
execute(`${PYTHON} ./worker/scripts/configure.py --format=msvs -R mediasoup-worker-test`);
execute(`${MSBUILD} ./worker/mediasoup-worker.sln /p:Configuration=${MEDIASOUP_BUILDTYPE}`);
execute(`cd worker && .\\out\\${MEDIASOUP_BUILDTYPE}\\mediasoup-worker-test.exe --invisibles --use-colour=yes ${MEDIASOUP_TEST_TAGS}`);
}
break;
}
case 'coverage':
{
taskReplaceVersion();
execute('jest --coverage');
execute('open-cli coverage/lcov-report/index.html');
break;
}
case 'postinstall':
{
if (!process.env.MEDIASOUP_WORKER_BIN)
{
if (!isWindows)
{
execute(`${MAKE} -C worker`);
}
else
{
execute(`${PYTHON} ./worker/scripts/configure.py --format=msvs -R mediasoup-worker`);
execute(`${MSBUILD} ./worker/mediasoup-worker.sln /p:Configuration=${MEDIASOUP_BUILDTYPE}`);
}
}
break;
}
case 'release':
{
execute('node npm-scripts.js typescript:build');
execute('npm run lint');
execute('npm run test');
execute(`git commit -am '${version}'`);
execute(`git tag -a ${version} -m '${version}'`);
execute(`git push origin v${MAYOR_VERSION} && git push origin --tags`);
execute('npm publish');
break;
}
case 'install-clang-tools':
{
execute('npm install --prefix worker/scripts');
break;
}
default:
{
throw new TypeError(`unknown task "${task}"`);
}
}
function taskReplaceVersion()
{
const files = [ 'lib/index.js', 'lib/index.d.ts', 'lib/Worker.js' ];
for (const file of files)
{
const text = fs.readFileSync(file, { encoding: 'utf8' });
const result = text.replace(/__MEDIASOUP_VERSION__/g, version);
fs.writeFileSync(file, result, { encoding: 'utf8' });
}
}
function execute(command)
{
// eslint-disable-next-line no-console
console.log(`npm-scripts.js [INFO] executing command: ${command}`);
try
{
execSync(command, { stdio: [ 'ignore', process.stdout, process.stderr ] });
}
catch (error)
{
process.exit(1);
}
}