@@ -13846,8 +13846,8 @@ is not a problem with esbuild. You need to fix your environment instead.
1384613846 if (isFirstPacket) {
1384713847 isFirstPacket = false;
1384813848 let binaryVersion = String.fromCharCode(...bytes);
13849- if (binaryVersion !== "0.25.11 ") {
13850- throw new Error(`Cannot start service: Host version "${"0.25.11 "}" does not match binary version ${quote(binaryVersion)}`);
13849+ if (binaryVersion !== "0.25.12 ") {
13850+ throw new Error(`Cannot start service: Host version "${"0.25.12 "}" does not match binary version ${quote(binaryVersion)}`);
1385113851 }
1385213852 return;
1385313853 }
@@ -15078,7 +15078,7 @@ for your current platform.`);
1507815078 "node_modules",
1507915079 ".cache",
1508015080 "esbuild",
15081- `pnpapi-${pkg.replace("/", "-")}-${"0.25.11 "}-${path.basename(subpath)}`
15081+ `pnpapi-${pkg.replace("/", "-")}-${"0.25.12 "}-${path.basename(subpath)}`
1508215082 );
1508315083 if (!fs.existsSync(binTargetPath)) {
1508415084 fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
@@ -15111,7 +15111,7 @@ for your current platform.`);
1511115111 }
1511215112 }
1511315113 var _a2;
15114- var isInternalWorkerThread = ((_a2 = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a2.esbuildVersion) === "0.25.11 ";
15114+ var isInternalWorkerThread = ((_a2 = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a2.esbuildVersion) === "0.25.12 ";
1511515115 var esbuildCommandAndArgs = () => {
1511615116 if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1511715117 throw new Error(
@@ -15178,7 +15178,7 @@ More information: The file containing the code for esbuild's JavaScript API (${_
1517815178 }
1517915179 }
1518015180 };
15181- var version = "0.25.11 ";
15181+ var version = "0.25.12 ";
1518215182 var build = (options) => ensureServiceIsRunning().build(options);
1518315183 var context2 = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
1518415184 var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -15296,7 +15296,7 @@ More information: The file containing the code for esbuild's JavaScript API (${_
1529615296 if (longLivedService)
1529715297 return longLivedService;
1529815298 let [command2, args] = esbuildCommandAndArgs();
15299- let child = child_process.spawn(command2, args.concat(`--service=${"0.25.11 "}`, "--ping"), {
15299+ let child = child_process.spawn(command2, args.concat(`--service=${"0.25.12 "}`, "--ping"), {
1530015300 windowsHide: true,
1530115301 stdio: ["pipe", "pipe", "inherit"],
1530215302 cwd: defaultWD
@@ -15404,7 +15404,7 @@ More information: The file containing the code for esbuild's JavaScript API (${_
1540415404 esbuild: node_exports
1540515405 });
1540615406 callback(service);
15407- let stdout = child_process.execFileSync(command2, args.concat(`--service=${"0.25.11 "}`), {
15407+ let stdout = child_process.execFileSync(command2, args.concat(`--service=${"0.25.12 "}`), {
1540815408 cwd: defaultWD,
1540915409 windowsHide: true,
1541015410 input: stdin,
@@ -15424,7 +15424,7 @@ More information: The file containing the code for esbuild's JavaScript API (${_
1542415424 var startWorkerThreadService = (worker_threads2) => {
1542515425 let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
1542615426 let worker = new worker_threads2.Worker(__filename, {
15427- workerData: { workerPort, defaultWD, esbuildVersion: "0.25.11 " },
15427+ workerData: { workerPort, defaultWD, esbuildVersion: "0.25.12 " },
1542815428 transferList: [workerPort],
1542915429 // From node's documentation: https://nodejs.org/api/worker_threads.html
1543015430 //
0 commit comments