Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Ti API Include Finder Plugin

Overview

The Ti API Include Finder plugin finds all files that are Ti.include()'d in the project. It depends on the Ti API Processor plugin.

Options

No options

Output

  • name string Always equals "ti-api-include-finder"
  • summary string A short summary of the results
  • resolved array The list of include statements that were successfully resolved
    • filename string The full path to the file where the include statement was called from
    • line number The line number where the include statement was called from
    • column number The column number where the include statement was called from
    • data object Information specific to the include statement
      • name string The value passed to include
      • path string The file that the include statement was resolved to
  • unresolved array The list of include statements that were passed an unknown value
    • filename string The full path to the file where the include statement was called from
    • line number The line number where the include statement was called from
    • column number The column number where the include statement was called from
    • data object Information specific to the include statement
  • missing array The list of include statements that were resolved, but the file could not be found
    • filename string The full path to the file where the include statement was called from
    • line number The line number where the include statement was called from
    • column number The column number where the include statement was called from
    • data object Information specific to the include statement
      • name string The value passed to include
      • path string The file that the include statement was resolved to