From e4e309eb2671df3269eb072c1205f7b9111ef09d Mon Sep 17 00:00:00 2001 From: tarun khanna Date: Wed, 24 Jan 2024 10:44:31 +0530 Subject: [PATCH] [chore]: test npm release --- scripts/publishToNpm.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/publishToNpm.js b/scripts/publishToNpm.js index fddb37c9..6c907279 100644 --- a/scripts/publishToNpm.js +++ b/scripts/publishToNpm.js @@ -30,7 +30,11 @@ fs.writeFileSync(NPMRC_PATH, npmRcContent); try { execa.commandSync('npm publish --access public', { - cwd: './', + cwd: './packages/i18nify-js', + stdio: 'inherit', + }); + execa.commandSync('npm publish --access public', { + cwd: './packages/i18nify-react', stdio: 'inherit', }); } finally {