SandpointsGitHook/vendor/github.com/evanw/esbuild/pkg/api/serve_wasm.go

21 lines
443 B
Go

//go:build js && wasm
// +build js,wasm
package api
import "fmt"
// Remove the serve API in the WebAssembly build. This removes 2.7mb of stuff.
func (*internalContext) Serve(ServeOptions) (ServeResult, error) {
return ServeResult{}, fmt.Errorf("The \"serve\" API is not supported when using WebAssembly")
}
type apiHandler struct {
}
func (*apiHandler) broadcastBuildResult(BuildResult, buildSummary) {
}
func (*apiHandler) stop() {
}