From cf6f8194e45b2f941444f1ca389657eba7f80af8 Mon Sep 17 00:00:00 2001 From: grngxd <36968271+grngxd@users.noreply.github.com> Date: Tue, 24 Jun 2025 20:31:19 +0100 Subject: [PATCH] bump version to 0.0.8 and update package removal command --- cmd/sync/index.ts | 2 +- index.ts | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/sync/index.ts b/cmd/sync/index.ts index 645d208..31463ff 100644 --- a/cmd/sync/index.ts +++ b/cmd/sync/index.ts @@ -143,7 +143,7 @@ const installPackage = async (lock: MixLockFile, id: string, version: string) => }; const removePackage = async (lock: MixLockFile, id: string, version: string) => { - exec(`winget remove --id ${id} --version ${version} --exact --silent --force`, (error, _, e) => { + exec(`winget remove --id ${id} --version ${version} --silent`, (error, _, e) => { if (error) { console.error(`Error removing package ${id}@${version}:`, error); return; diff --git a/index.ts b/index.ts index 408b8e0..40c19a9 100644 --- a/index.ts +++ b/index.ts @@ -6,7 +6,7 @@ const program = new Command(); program .name('mix') .description('a declerative file-based package manager for windows.') - .version('0.0.7', '-v, --version', 'output the current version'); + .version('0.0.8', '-v, --version', 'output the current version'); registerCommands(program); program.parse(); \ No newline at end of file diff --git a/package.json b/package.json index 0fd07c7..9d6d306 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@grng/mix", - "version": "0.0.7", + "version": "0.0.8", "publishConfig": { "access": "public" },