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
#TAG
comment 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_launcher
task inside the output panel
- Now it's possible to expose the lane's variables by using the
#PARA
tag.
#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
#ALIAS
comment to define an alias for a lane
- Fixed
private_lane
andlane
description 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
Fastfile
finding
- Changed
tag :
to#TAG
to group different lanes - Fixed the
onClick
listener 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+l
it will show you all the available lanes from a quick pick dropdown - The edits inside Fastfile are reloaded instantly