Loading...

CLI Overview

Quick Start Guide

wheels info

wheels reload

wheels deps

wheels destroy

wheels watch

wheels generate app

wheels generate app-wizard

wheels generate controller

wheels generate model

wheels generate view

wheels generate property

wheels generate route

wheels generate resource

wheels generate api-resource

wheels generate frontend

wheels generate test

wheels generate snippets

wheels scaffold

wheels test

wheels test run

wheels test coverage

wheels test debug

wheels config list

wheels config set

wheels config env

wheels env

wheels env setup

wheels env list

wheels env switch

wheels environment

wheels console

wheels runner

wheels server

wheels server start

wheels server stop

wheels server restart

wheels server status

wheels server log

wheels server open

wheels plugins

wheels plugins list

wheels plugins install

wheels plugins remove

wheels analyze

wheels analyze code

wheels analyze performance

wheels analyze security

wheels security

wheels security scan

wheels optimize

wheels optimize performance

wheels docs

wheels docs generate

wheels docs serve

wheels ci init

wheels docker init

wheels docker deploy

wheels deploy

wheels deploy audit

wheels deploy exec

wheels deploy hooks

wheels deploy init

wheels deploy lock

wheels deploy logs

wheels deploy proxy

wheels deploy push

wheels deploy rollback

wheels deploy secrets

wheels deploy setup

wheels deploy status

wheels deploy stop

Configuration Management

Creating Commands

Service Architecture

Migrations Guide

Testing Guide

Ask or search...
Ctrl K
Loading...

plugins remove (coming Soon)

This command may not work as expected. A complete and stable version is coming soon.

Removes an installed Wheels CLI plugin.

Usage

wheels plugins remove <name> [--global] [--force]

Parameters

  • name - (Required) Plugin name to remove
  • --global - (Optional) Remove globally installed plugin
  • --force - (Optional) Force removal without confirmation

Description

The plugins remove command safely uninstalls a plugin from your Wheels application. It:

  • Checks for dependent plugins
  • Creates a backup (by default)
  • Removes plugin files
  • Cleans up configuration
  • Updates plugin registry

Examples

Basic plugin removal

wheels plugins remove wheels-vue-cli

Remove global plugin

wheels plugins remove wheels-docker --global

Force removal (skip confirmation)

wheels plugins remove wheels-testing --force

Remove global plugin without confirmation

wheels plugins remove wheels-cli-tools --global --force

Removal Process

  1. Dependency Check: Ensures no other plugins depend on this one
  2. Backup Creation: Saves plugin files to backup directory
  3. Deactivation: Disables plugin in application
  4. File Removal: Deletes plugin files and directories
  5. Cleanup: Removes configuration entries
  6. Verification: Confirms successful removal

Output

With confirmation prompt (default)

Are you sure you want to remove the plugin 'wheels-vue-cli'? (y/n): y
🗑️  Removing plugin: wheels-vue-cli...

✅ Plugin removed successfully

With force flag

🗑️  Removing plugin: wheels-vue-cli...

✅ Plugin removed successfully

Cancellation

Are you sure you want to remove the plugin 'wheels-vue-cli'? (y/n): n
Plugin removal cancelled.

Notes

  • The --force flag skips the confirmation prompt
  • Use --global to remove plugins installed globally
  • Use wheels plugins list to verify removal
  • Some plugins may require manual cleanup of configuration files
  • Restart your application after removing plugins that affect core functionality