diff --git a/bin/cli.ts b/bin/cli.ts index 72dfb4d..5647f0d 100644 --- a/bin/cli.ts +++ b/bin/cli.ts @@ -17,13 +17,13 @@ program .command("prod") .description("Run the minomax process") .option( - "-f, --format [jpg | avif | webp]", + "-f, --format [jpg | avif | webp | svg]", "Image output format", "webp", ) .option( "-c, --codec [wav1 | mav1 | mx265]", - "Output video codec type", + "Video output codec type", "wav1", ) .option("-e, --encode [1 | 2 | 3]", "Video encoding level", parseInt, 3) @@ -93,7 +93,7 @@ program .option("-e, --encode [1 | 2 | 3]", "Video encoding level", parseInt, 3) .option("-d, --dest ", "Destination base path", destPath) .option( - "-I, --ignore ", + "-i, --ignore ", "Ignore patterns", (value) => value.split(","), [], diff --git a/package.json b/package.json index 5febaa2..32a57ed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@cresteem/minomax", "displayName": "Minomax", - "version": "1.0.1", + "version": "1.0.2", "description": " Minomax is a cutting-edge optimization tool tailored to enhance the performance of your web projects. Whether you're a developer striving for faster load times or a business aiming to deliver a seamless user experience, Minomax offers a powerful, all-encompassing solution. ", "main": "./dist/minomax.js", "types": "./dist/types/minomax.d.ts", @@ -94,4 +94,4 @@ "ts-node": "^10.9.2", "typescript": "5.7.3" } -} \ No newline at end of file +}