@runeya/runeya 2.0.7 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/agent/index.js CHANGED
@@ -3730,7 +3730,8 @@ var ProcessManager = class extends EventEmitter7 {
3730
3730
  if (configs.length === 0) return;
3731
3731
  const serviceEnv = resolveEnv(serviceConfig.env);
3732
3732
  const resolvedCwd = resolveCwd(serviceConfig.resolvedCwd ?? serviceConfig.cwd, serviceEnv);
3733
- const logParser = new LogParser();
3733
+ const jsParsers = serviceConfig.resolvedLogParsers ?? [];
3734
+ const logParser = new LogParser(jsParsers);
3734
3735
  const sources = configs.map((srcConfig) => {
3735
3736
  if (srcConfig.type === "file") {
3736
3737
  const absPath = isAbsolute(srcConfig.path) ? srcConfig.path : join3(resolvedCwd, srcConfig.path);