From 970741a8ddb2c45c03d8f347cc4e7912f0b02358 Mon Sep 17 00:00:00 2001 From: acalcutt Date: Wed, 28 Sep 2022 16:16:13 -0400 Subject: [PATCH] update publish commands --- publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.js b/publish.js index 09745e9..5cf5bb5 100644 --- a/publish.js +++ b/publish.js @@ -50,11 +50,11 @@ if (process.argv.length > 2 && process.argv[2] == '--no-publish') { /* PUBLISH */ // tileserver-gl -require('child_process').execSync('npm publish . --access public', { +child_process.execSync('npm publish . --access public', { stdio: 'inherit' }); // tileserver-gl-light -require('child_process').execSync('npm publish light --access public', { +child_process.execSync('npm publish light --access public', { stdio: 'inherit' });