@veryfront/ext-bundler-esbuild 0.1.1226 → 0.1.1228

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.
Files changed (2) hide show
  1. package/esm/binary.js +1 -1
  2. package/package.json +2 -2
package/esm/binary.js CHANGED
@@ -114,7 +114,7 @@ export async function ensureEsbuildBinary() {
114
114
  }
115
115
  setupPromise = (async () => {
116
116
  try {
117
- if (dntShim.Deno.env.get("ESBUILD_BINARY_PATH") || !isDenoCompiled) {
117
+ if (!isDenoCompiled || dntShim.Deno.env.get("ESBUILD_BINARY_PATH")) {
118
118
  setupComplete = true;
119
119
  return;
120
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veryfront/ext-bundler-esbuild",
3
- "version": "0.1.1226",
3
+ "version": "0.1.1228",
4
4
  "description": "Veryfront first-party extension package for ext-bundler-esbuild",
5
5
  "keywords": [
6
6
  "veryfront",
@@ -50,7 +50,7 @@
50
50
  "esbuild": "0.28.1"
51
51
  },
52
52
  "peerDependencies": {
53
- "veryfront": "^0.1.1226"
53
+ "veryfront": "^0.1.1228"
54
54
  },
55
55
  "type": "module",
56
56
  "types": "./esm/index.d.ts",