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/cli.cjs +2 -2
- package/dist/cli.cjs.map +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -60971,7 +60971,7 @@ var program = async () => {
|
|
|
60971
60971
|
os4.tmpdir(),
|
|
60972
60972
|
`jest-bridge-${Date.now()}-${Math.random().toString(36).slice(2)}.json`
|
|
60973
60973
|
);
|
|
60974
|
-
const reporterPath = path13.
|
|
60974
|
+
const reporterPath = path13.join(os4.tmpdir(), "headlamp", "jest-vitest-bridge.cjs");
|
|
60975
60975
|
try {
|
|
60976
60976
|
const needsWrite = (() => {
|
|
60977
60977
|
try {
|
|
@@ -60985,7 +60985,7 @@ var program = async () => {
|
|
|
60985
60985
|
fsSync3.mkdirSync(path13.dirname(reporterPath), { recursive: true });
|
|
60986
60986
|
fsSync3.writeFileSync(reporterPath, JEST_BRIDGE_REPORTER_SOURCE, "utf8");
|
|
60987
60987
|
}
|
|
60988
|
-
const envPath = path13.
|
|
60988
|
+
const envPath = path13.join(os4.tmpdir(), "headlamp", "jest-bridge-env.cjs");
|
|
60989
60989
|
try {
|
|
60990
60990
|
const existingEnv = fsSync3.readFileSync(envPath, "utf8");
|
|
60991
60991
|
if (existingEnv !== JEST_BRIDGE_ENV_SOURCE) {
|