Skip to content

Commit

Permalink
fix: Graphviz targetting wrong platform
Browse files Browse the repository at this point in the history
Tidy up other esbuild.js files

Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Sep 29, 2024
1 parent 4b27992 commit f5e992c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/base91/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
import { neutralTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await neutralTpl("src/index.ts", "dist/index");
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
import { browserTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await browserTpl("src/index.ts", "dist/index");
2 changes: 1 addition & 1 deletion packages/expat/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
import { neutralTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await neutralTpl("src/index.ts", "dist/index");
Expand Down
4 changes: 2 additions & 2 deletions packages/graphviz/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { nodeTpl } from "@hpcc-js/esbuild-plugins";
import { neutralTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await nodeTpl("src/index.ts", "dist/index");
await neutralTpl("src/index.ts", "dist/index");
2 changes: 1 addition & 1 deletion packages/llama/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
import { neutralTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await neutralTpl("src/index.ts", "dist/index");
Expand Down
2 changes: 1 addition & 1 deletion packages/zstd/esbuild.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { browserTpl, neutralTpl, nodeTpl } from "@hpcc-js/esbuild-plugins";
import { neutralTpl } from "@hpcc-js/esbuild-plugins";

// config ---
await neutralTpl("src/index.ts", "dist/index");
Expand Down

0 comments on commit f5e992c

Please sign in to comment.