From 3436e82042bd3ca722cc742acd41ea522ce33375 Mon Sep 17 00:00:00 2001 From: marc tobias Date: Tue, 2 Feb 2021 02:41:49 +0100 Subject: [PATCH 1/1] starting yarn 1.0 "--" is no longer required to forward options --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 8b4bb86..6f602dd 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -17,7 +17,7 @@ function serve() { return { writeBundle() { if (server) return; - server = require('child_process').spawn('yarn', ['start', '--', '--dev'], { + server = require('child_process').spawn('yarn', ['start', '--dev'], { stdio: ['ignore', 'inherit', 'inherit'], shell: true }); -- 2.39.5