import * as plugins from './plugins.js'; import * as interfaces from '../interfaces/index.js'; import { logger } from '../tsbundle.logging.js'; export class TsBundleProcess { constructor() { // Nothing here } /** * creates a bundle for the test enviroment */ public async buildTest( fromArg: string, toArg: string, argvArg: any ) { // create a bundle const esbuild = await plugins.esbuild.build({ entryPoints: [fromArg], bundle: true, outfile: toArg }); } /** * creates a bundle for the production environment */ public async buildProduction( fromArg: string, toArg: string, argvArg: any ) { // create a bundle const esbuild = await plugins.esbuild.build({ entryPoints: [fromArg], bundle: true, outfile: toArg }); } } const run = async () => { console.log('running spawned compilation process'); const transportOptions: interfaces.IEnvTransportOptions = JSON.parse(process.env.transportOptions); console.log('bundling with esbuild:'); console.log(transportOptions); process.chdir(transportOptions.cwd); console.log(`switched to ${process.cwd()}`); const tsbundleProcessInstance = new TsBundleProcess(); if (transportOptions.mode === 'test') { console.log('building for test:') tsbundleProcessInstance.buildTest( plugins.path.join(process.cwd(), transportOptions.from), plugins.path.join(process.cwd(), transportOptions.to), transportOptions.argv ); } else { console.log('building for production:') tsbundleProcessInstance.buildProduction( transportOptions.from, transportOptions.to, transportOptions.argv ); } }; run();