ToolJet/plugins/_templates/plugin/new/manifest.ejs.t
Midhun G S 72db6f6d8c
Tooljet CLI deployment and sanity check (#2096)
* feature-2054 plugin cli

* plugin cli

* readme changes

* npm publish

* Review comments

* Review comments

* cli fix

* added build flag
2022-02-05 06:49:49 +05:30

25 lines
No EOL
605 B
Perl

---
to: <%= plugins_path %>/packages/<%= name %>/lib/manifest.json
---
<%
Display_name = h.capitalize(display_name)
%>
{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "<%= Name %> datasource",
"description": "A schema defining <%= name %> datasource",
"type": "<%= type %>",
"source": {
"name": "<%= Display_name %>",
"kind": "<%= name %>",
"exposedVariables": {
"isLoading": {},
"data": {},
"rawData": {}
},
"options": {}
},
"defaults": {},
"properties": {},
"required": []
}