Skip to content
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.

Plugin packaging

CoffeeBlend edited this page Jul 16, 2018 · 4 revisions

All XEcmaScript plugins reside in the "scripts" folder inside the main XEcmaScript plugin folder. Each plugin is contained in its own folder, preferably named after the plugin.

In this folder, there must be a JSON file named plugin.json, with the following content:

{
    "name": "test",
    "files": [your plugins source files in the order to be loaded in],
    "type": "global"
}
  • name is the name of your plugin
  • files is an array of your plugins source files. Note: The files will be loaded in the order you list them here
  • type is your plugins type. Note: This has no effect at the moment
Clone this wiki locally