diff --git a/plugins.json b/plugins.json index 3a9e696..3e02394 100644 --- a/plugins.json +++ b/plugins.json @@ -1,5 +1,16 @@ [ { + + + "name": "Sample Plugin v2", + "entry": "./plugins/sample-plugin/plugin.js", + "version": "2.0.0" + + }, + { + "name": "example Plugin", + "entry": "./plugins/example-plugin/plugin.js" + "name": "Sample Plugin", "entry": "./plugins/sample-plugin/plugin.js" }, diff --git a/plugins/example-plugin/plugin.js b/plugins/example-plugin/plugin.js new file mode 100644 index 0000000..9a1ccd1 --- /dev/null +++ b/plugins/example-plugin/plugin.js @@ -0,0 +1,5 @@ +module.exports.run = () => { + return "Hello from new example Plugin!"; + + }; + \ No newline at end of file diff --git a/plugins/sample-plugin/plugin.js b/plugins/sample-plugin/plugin.js index a10d779..6fab797 100644 --- a/plugins/sample-plugin/plugin.js +++ b/plugins/sample-plugin/plugin.js @@ -1,3 +1,3 @@ module.exports.run = () => { - return "Hello from Sample Plugin!"; + return "Hello from new Sample Plugin!"; };