testeranto 0.219.8 → 0.219.10

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.
@@ -54,9 +54,9 @@ var esbuild_default = (projectConfig, testName2) => {
54
54
  };
55
55
 
56
56
  // src/server/runtimes/node/node.ts
57
- var nodeConfig = process.argv[2];
57
+ var nodeConfigPath = process.argv[2];
58
58
  var testName = process.argv[3] || "allTests";
59
- console.log(`[NODE BUILDER] nodeConfig: ${nodeConfig}`);
59
+ console.log(`[NODE BUILDER] nodeConfig: ${nodeConfigPath}`);
60
60
  async function startBundling(config) {
61
61
  console.log(`[NODE BUILDER] is now bundling: ${testName}`);
62
62
  const n = esbuild_default(config, testName);
@@ -69,10 +69,10 @@ async function startBundling(config) {
69
69
  }
70
70
  async function main() {
71
71
  try {
72
- const config = (await import(nodeConfig)).default;
72
+ const config = (await import(nodeConfigPath)).default;
73
73
  await startBundling(config);
74
74
  } catch (error) {
75
- console.error("NODE BUILDER: Error importing config:", nodeConfig, error);
75
+ console.error("NODE BUILDER: Error importing config:", nodeConfigPath, error);
76
76
  console.error(error);
77
77
  process.exit(1);
78
78
  }