Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the legacy Prettier VS Code extension package by bumping the version and making changes to the display name, and adds an MIT LICENSE file.
Changes:
- Removed "(Deprecated)" suffix from the displayName while keeping deprecation indicators elsewhere
- Bumped version from 12.1.0 to 12.2.0
- Added MIT LICENSE file with standard MIT license text
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| legacy/package.json | Updated displayName to remove "(Deprecated)" suffix and bumped version to 12.2.0 |
| legacy/LICENSE | Added standard MIT License with copyright by Esben Petersen (2017) |
| { | ||
| "name": "prettier-vscode", | ||
| "displayName": "Prettier - Code formatter (Deprecated)", | ||
| "displayName": "Prettier - Code formatter", |
There was a problem hiding this comment.
The displayName no longer indicates that this extension is deprecated, while the description field on line 4, the "deprecated" field on line 34, and the keywords still clearly mark this as deprecated. This inconsistency could confuse users browsing the marketplace. Consider either keeping "(Deprecated)" in the displayName to maintain consistency with the other deprecation indicators, or updating all deprecation-related fields together if the intention is to un-deprecate this extension.
| "displayName": "Prettier - Code formatter", | |
| "displayName": "Prettier - Code formatter (Deprecated)", |
No description provided.