From ae4c6bf94496283bff994f23c7426c24ac87b986 Mon Sep 17 00:00:00 2001 From: Phodal Huang Date: Fri, 17 Jul 2020 19:31:23 +0800 Subject: [PATCH] refactor: remove unused wasm build task --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index bd3b221..c6104bc 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,6 @@ PACKAGE_NAME=coca BINARY_LINUX=$(BINARY_DIR)/$(PACKAGE_NAME)_linux BINARY_MACOS=$(BINARY_DIR)/$(PACKAGE_NAME)_macos BINARY_WINDOWS=$(BINARY_DIR)/$(PACKAGE_NAME)_windows.exe -BINARY_WASM=$(BINARY_DIR)/$(PACKAGE_NAME).wasm all: clean build build: build-linux build-windows build-macos @@ -27,11 +26,6 @@ lint: changelog: conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -# Cross compilation -build-wasm: - cd wasm - CGO_ENABLED=0 GOOS=js GOARCH=wasm $(GOBUILD) -o $(BINARY_WASM) -v - cp $(BINARY_DIR)/$(PACKAGE_NAME).wasm wasm/web/$(PACKAGE_NAME).wasm build-plugins: go build -buildmode=plugin -o plugins/dep.so core/context/deps/*.go mkdir -p output/plugins -- GitLab