Skip to content

Commit

Permalink
fix!: Remove analyze command (#829)
Browse files Browse the repository at this point in the history
<!--
  Thanks for contributing!

Provide a description of your changes below and a general summary in the
title

Please look at the following checklist to ensure that your PR can be
accepted quickly:
-->

## Description

Since pub workspaces now can run analyze within all packages in the
workspace we can now remove our analyze proxy command.

Closes: #827 

## Type of Change

<!--- Put an `x` in all the boxes that apply: -->

- [ ] ✨ `feat` -- New feature (non-breaking change which adds
functionality)
- [x] 🛠️ `fix` -- Bug fix (non-breaking change which fixes an issue)
- [ ] ❌ `!` -- Breaking change (fix or feature that would cause existing
functionality to change)
- [ ] 🧹 `refactor` -- Code refactor
- [ ] ✅ `ci` -- Build configuration change
- [ ] 📝 `docs` -- Documentation
- [ ] 🗑️ `chore` -- Chore
  • Loading branch information
spydon authored Jan 9, 2025
1 parent fbd630b commit ab70ef3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 519 deletions.
2 changes: 0 additions & 2 deletions packages/melos/lib/src/command_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import 'package:cli_util/cli_logging.dart';
import 'package:pub_updater/pub_updater.dart';

import '../version.g.dart';
import 'command_runner/analyze.dart';
import 'command_runner/bootstrap.dart';
import 'command_runner/clean.dart';
import 'command_runner/exec.dart';
Expand Down Expand Up @@ -65,7 +64,6 @@ class MelosCommandRunner extends CommandRunner<void> {
addCommand(ListCommand(config));
addCommand(PublishCommand(config));
addCommand(VersionCommand(config));
addCommand(AnalyzeCommand(config));
addCommand(FormatCommand(config));

// Keep this last to exclude all built-in commands listed above
Expand Down
48 changes: 0 additions & 48 deletions packages/melos/lib/src/command_runner/analyze.dart

This file was deleted.

Loading

0 comments on commit ab70ef3

Please sign in to comment.