2021-07-12 12:24:29 -04:00
|
|
|
const services = require('./services')
|
|
|
|
|
|
|
|
console.log('#!/bin/bash')
|
|
|
|
console.log('set -ex')
|
|
|
|
|
|
|
|
switch (process.argv.pop()) {
|
|
|
|
case 'install':
|
2024-05-30 04:43:40 -04:00
|
|
|
console.log('npm install --omit=dev')
|
2021-07-12 12:24:29 -04:00
|
|
|
break
|
|
|
|
case 'compile':
|
|
|
|
for (const service of services) {
|
2022-02-01 11:39:55 -05:00
|
|
|
console.log('pushd', `services/${service.name}`)
|
2021-07-12 12:24:29 -04:00
|
|
|
switch (service.name) {
|
|
|
|
case 'web':
|
2024-05-30 04:43:40 -04:00
|
|
|
// Avoid downloading of cypress
|
|
|
|
console.log('export CYPRESS_INSTALL_BINARY=0')
|
|
|
|
|
|
|
|
// install webpack and frontend dependencies
|
|
|
|
console.log('npm install --include=dev')
|
|
|
|
// run webpack
|
2021-07-12 12:24:29 -04:00
|
|
|
console.log('npm run webpack:production')
|
|
|
|
// drop webpack/babel cache
|
|
|
|
console.log('rm -rf node_modules/.cache')
|
2024-05-30 04:43:40 -04:00
|
|
|
// uninstall webpack and frontend dependencies
|
|
|
|
console.log('npm install --omit=dev')
|
2024-07-03 04:49:13 -04:00
|
|
|
// precompile pug
|
|
|
|
console.log('npm run precompile-pug')
|
2021-07-12 12:24:29 -04:00
|
|
|
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)'
|
|
|
|
)
|