From 892f4e3626f3332544be444dde2a46f036037ce1 Mon Sep 17 00:00:00 2001 From: Jim Laurie Date: Sat, 9 Jun 2018 13:51:48 +0200 Subject: [PATCH] Fix setup links --- scripts/setup.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/setup.js b/scripts/setup.js index 37f6bb1ea3..60f9fe34ae 100755 --- a/scripts/setup.js +++ b/scripts/setup.js @@ -118,13 +118,18 @@ watcher('📦 Linking strapi...', 'npm link'); shell.cd('../strapi-plugin-graphql'); watcher('📦 Linking strapi-plugin-graphql...', 'npm link --no-optional', false); -// Upload plugins +// Plugin services shell.cd('../strapi-upload-local'); watcher('📦 Linking strapi-upload-local...', 'npm link --no-optional', false); +shell.cd('../strapi-email-sendmail'); +watcher('📦 Linking strapi-email-sendmail...', 'npm link --no-optional', false); + // Plugins with admin shell.cd('../strapi-plugin-email'); shell.rm('-f', 'package-lock.json'); +watcher('', 'npm install ../strapi-helper-plugin --no-optional'); +watcher('', 'npm install ../strapi-email-sendmail --no-optional'); watcher('📦 Linking strapi-plugin-email...', 'npm link --no-optional', false); shell.cd('../strapi-plugin-users-permissions');