@multiplatform.one/cli
Advanced tools
Comparing version 5.0.26 to 5.0.27
{ | ||
"name": "@multiplatform.one/cli", | ||
"version": "5.0.26", | ||
"version": "5.0.27", | ||
"author": "BitSpur <support@bitspur.com> (https://bitspur.com)", | ||
@@ -58,3 +58,3 @@ "contributors": [ | ||
"dependencies": { | ||
"@multiplatform.one/utils": "5.0.26", | ||
"@multiplatform.one/utils": "5.0.27", | ||
"commander": "^9.5.0", | ||
@@ -61,0 +61,0 @@ "dotenv": "^16.4.7", |
@@ -191,3 +191,3 @@ /* | ||
.option("-s, --services <services>", "services to keep") | ||
.option("--prompt", "prompt for services and platforms") | ||
.option("--no-prompt", "do not prompt for services and platforms") | ||
.description("update multiplatform.one") | ||
@@ -197,4 +197,4 @@ .action( | ||
checkout: string; | ||
noPrompt?: boolean; | ||
platforms?: string; | ||
prompt?: boolean; | ||
remote: string; | ||
@@ -221,3 +221,3 @@ services?: string; | ||
} | ||
if (options.prompt) { | ||
if (!options.noPrompt) { | ||
const servicesResult = await inquirer.prompt([ | ||
@@ -426,4 +426,5 @@ { | ||
await execa( | ||
"turbo", | ||
"pnpm", | ||
[ | ||
"turbo", | ||
"run", | ||
@@ -510,4 +511,5 @@ "build", | ||
await execa( | ||
"turbo", | ||
"pnpm", | ||
[ | ||
"turbo", | ||
"run", | ||
@@ -594,4 +596,5 @@ "test", | ||
await execa( | ||
"cspell", | ||
"pnpm", | ||
[ | ||
"cspell", | ||
"--unique", | ||
@@ -632,4 +635,5 @@ "`(git ls-files && (git lfs ls-files | cut -d' ' -f3))`", | ||
await execa( | ||
"biome", | ||
"pnpm", | ||
[ | ||
"biome", | ||
"check", | ||
@@ -678,3 +682,3 @@ "--fix", | ||
.action(async () => { | ||
await execa("turbo", ["run", "generate"], { | ||
await execa("pnpm", ["turbo", "run", "generate"], { | ||
stdio: "inherit", | ||
@@ -681,0 +685,0 @@ shell: true, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
125629
1393
+ Added@multiplatform.one/utils@5.0.27(transitive)
- Removed@multiplatform.one/utils@5.0.26(transitive)