This is a simple extension for VsCode that parses and displays all the available lanes present in your Fastfile.
- All your lanes are inserted in a lateral menu with their description for a better handling of your automations
- With
#TAGcomment you can also group them
The settings exposed by this extension are:
fastlane-launcher.fastlaneCommand: with this you can specify which command should use to launch the lanes. By default it'sfastlane, but you may usebundle exec fastlane
- Now the logs are printed in the
fastlane_launchertask inside the output panel
- Now it's possible to expose the lane's variables by using the
#PARAtag.
#PARAM {var_name} (default_value) comment
#PARAM {var_name} comment
#PARAM {var_name}
Both default_value and comment are optional.
- Fix issue #1
- Added the possibility to use
#ALIAScomment to define an alias for a lane
- Fixed
private_laneandlanedescription parsing - Added the config to show private lanes in explorer
- Private lanes will be shown in a custom named group
- Modified README with some images of how it works
- Fixed automatic
Fastfilefinding
- Changed
tag :to#TAGto group different lanes - Fixed the
onClicklistener on tag entry
- Now private lanes will be ignored
- Added the possibility to handle a
tag :descriptor to group lanes
- Displays all the available lanes on a panel of the activity bar
- With
shift+alt+lit will show you all the available lanes from a quick pick dropdown - The edits inside Fastfile are reloaded instantly