constpackageMarker=`${packageJsonMarkerId}:"${packageJsonMarkerId}"`;// this needs to be the format after esbuild has processed the file (e.g. double quotes)
if(content.includes(packageMarker)){
content=content.replace(packageMarker,JSON.stringify(JSON.parse(ctx.packageJsonFn())).slice(1,-1)/* trim braces */);
// const productMarker = `${productJsonMarkerId}:"${productJsonMarkerId}"`; // this needs to be the format after esbuild has processed the file (e.g. double quotes)
// if (content.includes(productMarker)) {
// content = content.replace(productMarker, JSON.stringify(JSON.parse(ctx.productJsonFn())).slice(1, -1) /* trim braces */);