class Fastlane::Actions::NpmPostInstallAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 32 def self.available_options [ FastlaneCore::ConfigItem.new(key: :step_name, default_value: "Running npm post install script", description: "Name for this step", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :arguments, default_value: [], description: "Script arguments", optional: true, type: Array), ] end
description()
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 15 def self.description "A very simple plugin to run npm scripts" end
details()
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 27 def self.details # Optional: "A very simple plugin to run npm scripts" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 48 def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform # # [:ios, :mac, :android].include?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 23 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_post_install_action.rb, line 7 def self.run(params) other_action.npm_run( script: 'postinstall', step_name: params[:step_name], arguments: params[:arguments] ) end