Skip to content

Commit f5e992c

Browse files
committed
fix: Graphviz targetting wrong platform
Tidy up other esbuild.js files Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent 4b27992 commit f5e992c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

packages/base91/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
44
await neutralTpl("src/index.ts", "dist/index");

packages/duckdb/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { browserTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
44
await browserTpl("src/index.ts", "dist/index");

packages/expat/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
44
await neutralTpl("src/index.ts", "dist/index");

packages/graphviz/esbuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
4-
await nodeTpl("src/index.ts", "dist/index");
4+
await neutralTpl("src/index.ts", "dist/index");

packages/llama/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
44
await neutralTpl("src/index.ts", "dist/index");

packages/zstd/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
1+
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22

33
// config ---
44
await neutralTpl("src/index.ts", "dist/index");

0 commit comments

Comments
 (0)