Skip to content

Commit

Permalink
fix esbuild not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanShang committed Jun 25, 2024
1 parent 419ac5b commit e245596
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,20 @@ wasm_relperf: $(wasm_relperf_target) ## Compile kuzu-wasm in relperf mode

.PHONY: package
package: $(wasm_relperf_target) ## Package kuzu-wasm
yarn
yarn install
cp build/relperf/kuzu-wasm.* packages/kuzu-wasm/src/
yarn workspace @kuzu/kuzu-wasm build:debug
yarn workspace @kuzu/kuzu-wasm build:release

.PHONY: package_dev
package_dev: $(wasm_dev_target) ## Package kuzu-wasm in dev mode
yarn
yarn install
cp build/dev/kuzu-wasm.* packages/kuzu-wasm/src/
yarn workspace @kuzu/kuzu-wasm build:release
yarn workspace @kuzu/kuzu-wasm build:debug

.PHONY: shell
shell: package ## Build kuzu-shell application
yarn
yarn install
yarn workspace @kuzu/kuzu-shell build:release

.PHONY: shell_dev
Expand Down

0 comments on commit e245596

Please sign in to comment.