From: marc tobias Date: Tue, 2 Feb 2021 01:41:49 +0000 (+0100) Subject: starting yarn 1.0 "--" is no longer required to forward options X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/commitdiff_plain/3436e82042bd3ca722cc742acd41ea522ce33375?ds=inline;hp=710e1e937f88dfab5224904406417b69f2e9094a starting yarn 1.0 "--" is no longer required to forward options --- 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 });