Skip to content

Commit

Permalink
publish 0.18.20 to deno
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Aug 8, 2023
1 parent eed654f commit 8539ba0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Binary file modified esbuild.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,8 +721,8 @@ function createChannel(streamIn) {
if (isFirstPacket) {
isFirstPacket = false;
let binaryVersion = String.fromCharCode(...bytes);
if (binaryVersion !== "0.18.19") {
throw new Error(`Cannot start service: Host version "${"0.18.19"}" does not match binary version ${quote(binaryVersion)}`);
if (binaryVersion !== "0.18.20") {
throw new Error(`Cannot start service: Host version "${"0.18.20"}" does not match binary version ${quote(binaryVersion)}`);
}
return;
}
Expand Down Expand Up @@ -1721,7 +1721,7 @@ function convertOutputFiles({ path, contents, hash }) {

// lib/deno/mod.ts
import * as denoflate from "https://deno.land/x/denoflate@1.2.1/mod.ts";
var version = "0.18.19";
var version = "0.18.20";
var build = (options) => ensureServiceIsRunning().then((service) => service.build(options));
var context = (options) => ensureServiceIsRunning().then((service) => service.context(options));
var transform = (input, options) => ensureServiceIsRunning().then((service) => service.transform(input, options));
Expand Down

0 comments on commit 8539ba0

Please sign in to comment.