From 4374c60dc65e9d4bc9d7a2a4edac6902dbbef79f Mon Sep 17 00:00:00 2001 From: albemarle <45690905+albemarle@users.noreply.github.com> Date: Fri, 31 May 2019 08:43:08 -0400 Subject: [PATCH] fix(i18n): tell babel-plugin-react-intl where defineMessages and friends are now being imported from (#75) --- .babelrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.babelrc b/.babelrc index 3af2728..b17e906 100755 --- a/.babelrc +++ b/.babelrc @@ -32,7 +32,8 @@ "i18n": { "plugins": [ ["react-intl", { - "messagesDir": "./temp" + "messagesDir": "./temp", + "moduleSourceName": "@edx/frontend-i18n" }] ] }