From d885acb0646b661c288f4eb2aa761cfee46c7b09 Mon Sep 17 00:00:00 2001 From: Eric Taylor Date: Tue, 30 Jul 2019 07:53:55 -0600 Subject: [PATCH] fix: load scoped plugins (#3672) fixes #3288 --- app/plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins.js b/app/plugins.js index 589e623e..26a41a65 100644 --- a/app/plugins.js +++ b/app/plugins.js @@ -245,7 +245,7 @@ exports.subscribe = fn => { function getPaths() { return { plugins: plugins.plugins.map(name => { - return resolve(path, 'node_modules', name.split('#')[0].split('@')[0]); + return resolve(path, 'node_modules', name.split('#')[0]); }), localPlugins: plugins.localPlugins.map(name => { return resolve(localPath, name);