Description
Description
The vscode-swift extension recently added support for creating a new swift project. It does so using swift package init
with some user input to initialize the project with. Right now, it relies on parsing the output from swift package init --help
to find the list of available project types for the --type
option. However, this isn't really an ideal solution as the format could presumably change at any point (and has already drastically changed between swift 5.3 and 5.10).
Here's what the output looks like in Swift 5.8:
swift package init --help
OVERVIEW: Initialize a new package
USAGE: swift package init <options>
OPTIONS:
--type <type> Package type: (default: library)
library - A package with a library.
executable - A package with an executable.
tool - A package with an executable that uses
Swift Argument Parser. Use this template if you
plan to have a rich set of command-line arguments.
empty - An empty package with a Package.swift manifest.
--name <name> Provide custom package name
--version Show the version.
-h, -help, --help Show help information.
It would be nice to have a more reliable output format (e.g. JSON) that contains the enumerations for the --type
parameter. No additional information is needed beyond what's already available in the output - the extension only needs the enum value as well as a brief description (a human readable label would be nice to include, but is not necessary as the enum value can be parsed rather easily).
Seeing as this is something that might be beneficial for other commands: it might even be a good idea to add this as a feature of swift argument parser. However, I'm raising an issue here first since this is the primary use case for the vscode-swift extension.
Expected behavior
No response
Actual behavior
No response
Steps to reproduce
No response
Swift Package Manager version/commit hash
No response
Swift & OS version (output of swift --version && uname -a
)
No response