Telegram Web K with changes to work inside I2P
https://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1017 B
39 lines
1017 B
// @ts-check |
|
|
|
const { spawn } = require('child_process'); |
|
|
|
const version = process.argv[2] || 'same'; |
|
const changelog = process.argv[3] || ''; |
|
const child = spawn(`npm`, ['run', 'change-version', version, changelog].filter(Boolean)); |
|
child.stdout.on('data', (chunk) => { |
|
console.log(chunk.toString()); |
|
}); |
|
|
|
child.on('close', (code) => { |
|
if(code != 0) { |
|
console.log(`child process exited with code ${code}`); |
|
} |
|
|
|
const child = spawn(`npm`, ['run', 'build']); |
|
child.stdout.on('data', (chunk) => { |
|
console.log(chunk.toString()); |
|
}); |
|
|
|
child.on('close', (code) => { |
|
if(code != 0) { |
|
console.error(`child process exited with code ${code}`); |
|
} else { |
|
console.log('Compiled successfully.'); |
|
} |
|
}); |
|
}); |
|
|
|
/* exec(`npm run change-version ${version}${changelog ? ' ' + changelog : ''}; npm run build`, (err, stdout, stderr) => { |
|
if(err) { |
|
return; |
|
} |
|
|
|
// the *entire* stdout and stderr (buffered) |
|
console.log(`stdout: ${stdout}`); |
|
console.log(`stderr: ${stderr}`); |
|
}); */
|
|
|