From 4e7a2d3734c83d536aebf209c43b8f7c592301bf Mon Sep 17 00:00:00 2001 From: Jared Shields Date: Mon, 24 Aug 2020 10:39:22 -0400 Subject: [PATCH] Updated readme to describe new method of invoking the debug builds. (#117) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9612f2..7b951b6 100644 --- a/README.md +++ b/README.md @@ -114,4 +114,4 @@ if appErr := p.API.SetProfileImage(userID, profileImage); appErr != nil { ``` ### How do I build the plugin with unminified JavaScript? -Use `make dist-debug` and `make deploy-debug` in place of `make dist` and `make deploy` to configure webpack to generate unminified Javascript. +Setting the `MM_DEBUG` environment variable will invoke the debug builds. The simplist way to do this is to simply include this variable in your calls to `make` (e.g. `make dist MM_DEBUG=1`).