headlamp 0.1.19 → 0.1.20

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/dist/index.js CHANGED
@@ -62540,7 +62540,7 @@ var program = async () => {
62540
62540
  os4.tmpdir(),
62541
62541
  `jest-bridge-${Date.now()}-${Math.random().toString(36).slice(2)}.json`
62542
62542
  );
62543
- const reporterPath = path13.resolve("scripts/jest-vitest-bridge.cjs");
62543
+ const reporterPath = path13.join(os4.tmpdir(), "headlamp", "jest-vitest-bridge.cjs");
62544
62544
  try {
62545
62545
  const needsWrite = (() => {
62546
62546
  try {
@@ -62554,7 +62554,7 @@ var program = async () => {
62554
62554
  fsSync3.mkdirSync(path13.dirname(reporterPath), { recursive: true });
62555
62555
  fsSync3.writeFileSync(reporterPath, JEST_BRIDGE_REPORTER_SOURCE, "utf8");
62556
62556
  }
62557
- const envPath = path13.resolve("scripts/jest-bridge-env.cjs");
62557
+ const envPath = path13.join(os4.tmpdir(), "headlamp", "jest-bridge-env.cjs");
62558
62558
  try {
62559
62559
  const existingEnv = fsSync3.readFileSync(envPath, "utf8");
62560
62560
  if (existingEnv !== JEST_BRIDGE_ENV_SOURCE) {