From 2c28ba8888eb6aaa623b1da2157a4711c8069343 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Thu, 1 Aug 2019 20:52:02 +0800 Subject: [PATCH] MDL-66307 js: Add missing plugintypes structure in subplugin read --- babel-plugin-add-module-to-define.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/babel-plugin-add-module-to-define.js b/babel-plugin-add-module-to-define.js index 2169daed0b2..27794724ab6 100644 --- a/babel-plugin-add-module-to-define.js +++ b/babel-plugin-add-module-to-define.js @@ -72,7 +72,7 @@ module.exports = ({ template, types }) => { var rawContents = fs.readFileSync(file); var subplugins = JSON.parse(rawContents); - for (const [component, path] of Object.entries(subplugins)) { + for (const [component, path] of Object.entries(subplugins.plugintypes)) { if (path) { moodlePlugins[path] = component; } @@ -202,4 +202,4 @@ module.exports = ({ template, types }) => { } } }; -}; \ No newline at end of file +}; -- 2.43.0