From 974af7620a2a2cc57db441f6ec98656a10aaf064 Mon Sep 17 00:00:00 2001 From: gossi Date: Mon, 15 Oct 2018 11:08:57 +0200 Subject: [PATCH] fix arg for --web-component --- src/tasks/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/init.js b/src/tasks/init.js index ed7da97..8252ef3 100644 --- a/src/tasks/init.js +++ b/src/tasks/init.js @@ -13,7 +13,7 @@ module.exports = async (context) => { args.push(config.welcome ? '--welcome' : '--no-welcome'); if (config['web-component']) { - args.push('--web-component', config['web-component']); + args.push(`--web-component=${config['web-component']}`); } if (config.blueprint) {