cli/createPlugin: use yarn install instead of yarn

This commit is contained in:
Patrik Oldsberg
2020-03-05 10:47:43 +01:00
parent cb4d1e82b7
commit 99af94979c
@@ -229,7 +229,7 @@ const buildPlugin = async (pluginFolder: string) => {
const prom_exec = promisify(exec);
const commands = ['yarn', 'yarn build'];
const commands = ['yarn install', 'yarn build'];
for (const command of commands) {
process.stdout.write(chalk.green(` executing\t${chalk.cyan(command)}`));
try {