forked from versatica/mediasoup-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-scripts.js
221 lines (174 loc) · 4.07 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
216
217
218
219
220
221
/* eslint-disable no-console */
const process = require('process');
const os = require('os');
const fs = require('fs');
const { execSync } = require('child_process');
const { version } = require('./package.json');
const isWindows = os.platform() === 'win32';
const task = process.argv.slice(2).join(' ');
// mediasoup mayor version.
const MAYOR_VERSION = version.split('.')[0];
console.log(`npm-scripts.js [INFO] running task "${task}"`);
switch (task)
{
// As per NPM documentation (https://docs.npmjs.com/cli/v9/using-npm/scripts)
// `prepare` script:
//
// - Runs BEFORE the package is packed, i.e. during `npm publish` and `npm pack`.
// - Runs on local `npm install` without any arguments.
// - NOTE: If a package being installed through git contains a `prepare` script,
// its dependencies and devDependencies will be installed, and the `prepare`
// script will be run, before the package is packaged and installed.
//
// So here we compile TypeScript to JavaScript.
case 'prepare':
{
buildTypescript(/* force */ false);
break;
}
case 'typescript:build':
{
installDeps();
buildTypescript(/* force */ true);
replaceVersion();
break;
}
case 'typescript:watch':
{
deleteLib();
const { TscWatchClient } = require('tsc-watch/client');
const watch = new TscWatchClient();
watch.on('success', replaceVersion);
watch.start('--pretty');
break;
}
case 'lint':
{
lint();
break;
}
case 'test':
{
buildTypescript(/* force */ false);
replaceVersion();
test();
break;
}
case 'coverage':
{
buildTypescript(/* force */ false);
replaceVersion();
executeCmd('jest --coverage');
executeCmd('open-cli coverage/lcov-report/index.html');
break;
}
case 'install-deps':
{
installDeps();
break;
}
case 'release:check':
{
checkRelease();
break;
}
case 'release':
{
checkRelease();
executeCmd(`git commit -am '${version}'`);
executeCmd(`git tag -a ${version} -m '${version}'`);
executeCmd(`git push origin v${MAYOR_VERSION}`);
executeCmd(`git push origin '${version}'`);
executeCmd('npm publish');
break;
}
default:
{
throw new TypeError(`unknown task "${task}"`);
}
}
function replaceVersion()
{
console.log('npm-scripts.js [INFO] replaceVersion()');
const files = [ 'lib/index.js', 'lib/index.d.ts' ];
for (const file of files)
{
const text = fs.readFileSync(file, { encoding: 'utf8' });
const result = text.replace(/__MEDIASOUP_CLIENT_VERSION__/g, version);
fs.writeFileSync(file, result, { encoding: 'utf8' });
}
}
function deleteLib()
{
if (!fs.existsSync('lib'))
{
return;
}
console.log('npm-scripts.js [INFO] deleteLib()');
if (!isWindows)
{
executeCmd('rm -rf lib');
}
else
{
// NOTE: This command fails in Windows if the dir doesn't exist.
executeCmd('rmdir /s /q "lib"', /* exitOnError */ false);
}
}
function buildTypescript(force = false)
{
if (!force && fs.existsSync('lib'))
{
return;
}
console.log('npm-scripts.js [INFO] buildTypescript()');
deleteLib();
executeCmd('tsc');
}
function lint()
{
console.log('npm-scripts.js [INFO] lint()');
executeCmd('eslint -c .eslintrc.js --max-warnings 0 src .eslintrc.js npm-scripts.js');
}
function test()
{
console.log('npm-scripts.js [INFO] test()');
executeCmd('jest');
}
function installDeps()
{
console.log('npm-scripts.js [INFO] installDeps()');
// Install/update deps.
executeCmd('npm ci --ignore-scripts');
// Update package-lock.json.
executeCmd('npm install --package-lock-only --ignore-scripts');
}
function checkRelease()
{
console.log('npm-scripts.js [INFO] checkRelease()');
installDeps();
buildTypescript(/* force */ true);
replaceVersion();
lint();
test();
}
function executeCmd(command, exitOnError = true)
{
console.log(`npm-scripts.js [INFO] executeCmd(): ${command}`);
try
{
execSync(command, { stdio: [ 'ignore', process.stdout, process.stderr ] });
}
catch (error)
{
if (exitOnError)
{
console.error(`npm-scripts.js [ERROR] executeCmd() failed, exiting: ${error}`);
process.exit(1);
}
else
{
console.log(`npm-scripts.js [INFO] executeCmd() failed, ignoring: ${error}`);
}
}
}