From 2000e8d623c2905ec8879b187edff8090fb711a6 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Fri, 2 Feb 2024 13:20:23 +0100 Subject: [PATCH] chore: update script --- scripts/prompt.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prompt.mjs b/scripts/prompt.mjs index a1bd5ed..268f9a4 100644 --- a/scripts/prompt.mjs +++ b/scripts/prompt.mjs @@ -6,7 +6,7 @@ import { promptForPackage } from './packages.mjs' const pkg = await promptForPackage() -execSync('npx bumpp', { stdio: 'inherit', cwd: pkg.path }) +execSync('npx bumpp --no-tag --no-commit --no-push', { stdio: 'inherit', cwd: pkg.path }) cd(pkg.path) const { version } = await fs.readJSON(join(pkg.path, 'package.json'))