mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ae0c347f27
[misc] npm workspaces GitOrigin-RevId: 87aa72db6637fb238d7cd35b0a48ac3ed58ab3eb
34 lines
849 B
JavaScript
34 lines
849 B
JavaScript
const services = require('./services')
|
|
|
|
console.log('#!/bin/bash')
|
|
console.log('set -ex')
|
|
|
|
switch (process.argv.pop()) {
|
|
case 'install':
|
|
console.log('npm ci')
|
|
break
|
|
case 'compile':
|
|
for (const service of services) {
|
|
console.log('pushd', `services/${service.name}`)
|
|
switch (service.name) {
|
|
case 'web':
|
|
console.log('npm run webpack:production')
|
|
// drop webpack/babel cache
|
|
console.log('rm -rf node_modules/.cache')
|
|
break
|
|
default:
|
|
console.log(`echo ${service.name} does not require a compilation`)
|
|
}
|
|
console.log('popd')
|
|
}
|
|
break
|
|
default:
|
|
console.error('unknown command')
|
|
console.log('exit 101')
|
|
process.exit(101)
|
|
}
|
|
|
|
console.log('set +x')
|
|
console.log(
|
|
'rm -rf /root/.cache /root/.npm $(find /tmp/ -mindepth 1 -maxdepth 1)'
|
|
)
|